jankolkmeier / svd-xbee

Node talks to xbee radios through serialport

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

readme example

imahumanfly opened this issue · comments

Actual code

var XBee = require('svd-xbee');

var xbee = new XBee({
  port: 'COM3',   // replace with yours
  baudrate: 9600 // 9600 is default
}).init();

var robot = xbee.addNode([0x00,0x13,0xa2,0x00,0x40,0x61,0xaa,0xe2]);

var robot.on("data", function(data) {
    console.log("robot>", data);
    if (data == "ping") robot.send("pong");
});

shouldn't be this?

var XBee = require('svd-xbee').XBee;

var xbee = new XBee({
  port: 'COM3',   // replace with yours
  baudrate: 9600 // 9600 is default
}).init();

var robot = xbee.addNode([0x00,0x13,0xa2,0x00,0x40,0x61,0xaa,0xe2]);

robot.on("data", function(data) {
    console.log("robot>", data);
    if (data == "ping") robot.send("pong");
});

yep, well spotted!
On Aug 29, 2013 12:22 AM, "Javier" notifications@github.com wrote:

Actual code

var XBee = require('svd-xbee');
var xbee = new XBee({
port: 'COM3', // replace with yours
baudrate: 9600 // 9600 is default}).init();
var robot = xbee.addNode([0x00,0x13,0xa2,0x00,0x40,0x61,0xaa,0xe2]);
var robot.on("data", function(data) {
console.log("robot>", data);
if (data == "ping") robot.send("pong");});

shouldn't be this?

var XBee = require('svd-xbee').XBee;
var xbee = new XBee({
port: 'COM3', // replace with yours
baudrate: 9600 // 9600 is default}).init();
var robot = xbee.addNode([0x00,0x13,0xa2,0x00,0x40,0x61,0xaa,0xe2]);
robot.on("data", function(data) {
console.log("robot>", data);
if (data == "ping") robot.send("pong");});


Reply to this email directly or view it on GitHubhttps://github.com//issues/12
.