Questions tagged [node-xbee]

This module lets you bridge the real world to Node.js. Connect to sensors, robots, turn things on and off, take remote measurements

About

This module lets you bridge the real world to Node.js. Connect to sensors, robots, turn things on and off, take remote measurements

Sample code

frontdoor.on("open", function() {
  if (alarm.state == "on") {
    alarm.sound();
    hounds.release();
  } else {
    lights.switchOn();
    voice.speak("Welcome home");
  }
});

License

Creative Commons Attribution-ShareAlike 2.0 UK: England & Wales License.

Links

Github

12 questions
2
votes
1 answer

Get the MAC address of an XBee using Node.js

My Node.js app is using xbee-api to allow an XBee connected via a serial port to communicate wirelessly with other XBees. The local XBee is in API Coordinator mode. How can I query the XBee (physically connected via serial port) to get its 64 bit…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
2
votes
1 answer

ZigBee Gateway Clarification?

I am working on setting up a project where I should be able to control my ZigBee End Device (ZDO or ZED) from an IP gateway. On having a detailed study, I understood on having a setup established. However, I need to confirm if ZigBee devices from…
velu4689
  • 35
  • 1
  • 6
2
votes
2 answers

Understanding Serial Data from XBee using Node-XBee and Node-SerialPort

node-serialport and node-xbee are used in the following code to read incoming XBee frames from a XBee Series 2 in Router AT configuration. A potentiometer is connected to pin 20 AD0 analog input pin of the XBee. All 4 analog pins AD0, AD1, AD2, AD3…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
1
vote
1 answer

What channels does the xbee use to communicate?

I have some XBee3 pro, I made a network, a coordinator and 7 routers or end devices, the coordinator sends a broadcast (DL = 0xFFFF) to all the routers so that they receive the information, in the same way of some routers that need to send…
Saul JP
  • 325
  • 2
  • 11
1
vote
1 answer

Can Zigbee/XBee Routers Automatically Associate with Coordinators

Can Zigbee/XBee Routers automatically associate with a Zigbee Coordinator, without having to manually configure PAN, DH and DL of the coordinator? In my setup, I have a XBee Coordinator API and several XBee Router AT, and it appears that I need to…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
1
vote
1 answer

Checksum Mismatch Error when using node-xbee to send a packet

A XBee Series 2 configured as a Coordinator API is trying to send a packet to a XBee Series 2 configured as a Router AT. The Coordinator is connected to a Mac OSX running node.js and the xbee-api library. var frame_obj = { type: 0x10, ud:…
Nyxynyx
  • 61,411
  • 155
  • 482
  • 830
0
votes
0 answers

xbee network communication topology question (need advise)

i have 3 Xbee s1 module, and want make mash topology network with Bidirectional communication. The system I'm trying to make is: about xbee module x1, x2, x3, (x1 is end device) 1 - x1 sends a message to x2, and x2 responds. 2 - when x1 receive a…
sang oh
  • 66
  • 1
  • 8
0
votes
1 answer

Arduino serial data manipulation - Sensors Serial Data, Read and parse to variables

I send 3 set of data from 3 sensors from Arduino 1 (router) to another Arduino(coordinator) to with wireless technology (xbee): On coordinator, I receive wireless data from this 3 sensors(from the router) perfectly. The data stream is something like…
Lazar Vlad
  • 23
  • 1
  • 5
0
votes
0 answers

Interface with Xbee pro-S2C with raspberry pi to set frequency parameters

Is it possible to set the frequency parameters of Xbee pro-S2C or will it work on default settings only? If yes, any sample available which will help me to create this kind solution with python code? I am connecting Xbee with Raspberry pi by using…
varul jain
  • 334
  • 8
  • 23
0
votes
1 answer

Can I connect a heartbeat sensor to XBee?

Can I connect the heartbeat rate sensor XD-58C to the analog pin of an XBee and send this value to a base station (PC) that have XBee connected to it?
0
votes
1 answer

how to controll the timing of data transmission (receive and transmit) in xbee module

In xbee module i can receive and transmit data. now my modules are receiving and transmitting data continuously(0x92 the IO index indicator). Now i want to sent data when any pin of router will go high or only then the data will be transmit to the…
Md . Sojib Ahmed
  • 431
  • 4
  • 14
0
votes
1 answer

xbee and arduino in mesh network

I'm working on aproject with xbee(s2) and Arduino UNO , My plan is to create a mesh sensor network from 5 nodes , each node consist of xbee connect to Arduino through xbee shield, and number of sensors connect to Arduino , one of this node must be…