svd-xbee icon indicating copy to clipboard operation
svd-xbee copied to clipboard

Node talks to xbee radios through serialport

Results 8 svd-xbee issues
Sort by recently updated
recently updated
newest added

Am parsing the packet data created from the Libelium createFrame function. This assumes access to a couple of non printing ascii characters at the start of the header, however, I...

Hello, great library! I am using it in another project and I have some issues under Windows, as I can't install the node-serialport dependency. Can you update the package.json file...

Changes made for this module to work with my zbee module (https://github.com/stormboy/node-zbee). Importantly, explicit messages initiated by remote nodes may be received.

Casting data to ascii wreaks havoc later on when converting to binary. I propose to keep it as Buffer for as long as possible. I have written up a small...

Getting this error when I start up Node-Red. Not sure who to direct this to as I'm confused whether you or freakent would know what the problem might be. I...

Actual code ``` javascript 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]);...

I wonder if you've done or plan to do any work on abstracting the communication between your library and the XBee coordinator. I would like to talk to XBee devices...

I'm trying to send some data to a remote XBee using the following lines of code: addr64 = [0x00, 0x13, 0xa2, 0x00, 0x40, 0xaa, 0x18, 0xdf]; xbee.send(packet.payload, addr64, [0xff, 0xfe],...