Questions tagged [xbee]

XBee is a series of radio modules. Variants include 868 MHz, 900 MHz, and 2.4 GHz, using point-to-point, point-to-multipoint, and mesh networks.

XBee is a series of radio modules. Variants include 868 MHz, 900 MHz, and 2.4 GHz, using point-to-point, point-to-multipoint, and mesh networks.

Model Types:

  • Series 1 - 802.15.4, Point to Point or Star Networking
  • Series 2 - ZigBee Mesh Networking

Details are at:

553 questions
-1
votes
1 answer

What to use instead of input ()

in example read from xbee devices is: device = XBeeDevice(PORT, BAUD_RATE) try: device.open() def data_receive_callback(xbee_message): print("From %s >> %s" % (xbee_message.remote_device.get_64bit_addr(), …
prem111
  • 63
  • 1
  • 7
-1
votes
1 answer

How to send/receive POST requests via xbee 3g modem, controlled with arduino via serial port

I am having trouble performing a successful POST using an Arduino Mega2560 to send via xbee 3g modem (XBC-M5-UT-001). Using the XCTU software from digi, through the serial terminal, I have been able to: -Configure the modem using AT…
-1
votes
1 answer

Unable to print all frame data received from xbee in byte array in Python

While Receiving frames from xbee i am getting 3 frames, but in byte array its showing data of only one frame. How to get all the 3 frame data in byte array? I am using these two commands to read data and print the data in byte array. xbee_message…
Ayush
  • 37
  • 6
-1
votes
1 answer

unable to send command in hex format for xbee in python

from digi.xbee.devices import XBeeDevice, RemoteXBeeDevice, XBee64BitAddress import serial import logging local_device = XBeeDevice("COM7", 9600) data_send = ("\x33\x03\x75\x30\x00\x24\x5b\xc0") try: local_device.open() remote_device =…
Ayush
  • 37
  • 6
-1
votes
1 answer

Mesh networking zigbee

I have a mesh network with 5 routers and 1 coordinator. The data from the coordinator is sent to database in pi and then hosted to website. When i try to read the routing table information from the coordinator , i see that all routers are connected…
RC10
  • 1
-1
votes
1 answer

What is the function of cyclic sleep mode in Router API MODE in XBee XCTU software?

I am using XBee pro series 2. I have read in many forums that ZigBee routers do not support sleep mode. But I have seen in XCTU software that we can still set the sleep mode (e.g. cyclic sleep mode etc.). Does XBee pro series 2 support sleep mode…
Jyoti Raj Sharma
  • 91
  • 1
  • 3
  • 10
-1
votes
1 answer

Plug XBee into an Android device

If I connect an XBee device (e.g. XBee S2B) to an Android smartphone (as USB host) using a USB XBee adapter module, will I be able to communicate over the XBee network using serial communications from an Android app?
Slicc
  • 3,217
  • 7
  • 35
  • 70
-1
votes
1 answer

C# Changing parts of byte array based on user input

I am sending an API frame using the following code: byte[] bytesToSend5 = new byte[] { 0x7E, 0x00, 0x10, 0x01, 0x00, 0x13, 0xA2, 0x00, 0x40, 0xA6, 0x5E, 0x23, 0xFF, 0xFE, 0x02, 0x44, 0x37, 0x04, 0x4D…
-1
votes
4 answers

can xbee as router scan all end device with "ATAS active scan command"? or Are there another way?

If i buy 7 xbee-zigbee. I setup xbee modules like this. 1 coordinator (C) 3 router (R1-R2 -R3) 3 end device (ED1 - ED2 - ED3) Can a router scan all end device with "AS" (active scan) command? Result must be like this; R1 get rssi value from ED1 :…
apo mapo
  • 11
  • 1
  • 5
-1
votes
1 answer

HAL_UART_Transmit_IT: only a few bytes are sent

i've got a problem on my STM32F407 with FreeRTOS. So Far most of the messages to a xbee module are sent. Only Sometimes (after 5 to 60 minutes) the TX process will be interrupted. In the debug session i can see, that TXEIE ist not set anymore after…
RealtimeRic
  • 1
  • 1
  • 3
-1
votes
1 answer

IOexception was unhandled through Arduino

so I'm doing a project where one system transmits data via Arduino and Xbee and the receiving system receives data via Arduino and Xbee. At the receiving end, i'm sending the information to Visual Studios. So, when I press the stop button to stop…
Nic
  • 93
  • 1
  • 7
-1
votes
2 answers

the led didn't switch on

i have a strange problem :o i make a connection between two xbee when i click on a button a led connected to the pin 13 light on and then the xbee coordinator send an information to switch on a led connected to the pin D3 of the xbee router. the…
sawi
  • 19
  • 2
-1
votes
1 answer

How to decrypt a XBEE S1 packet encrypted knowing the key?

I sniffed a XBEE S1 packet and it's normally a full 802.15.4 packet. The AES encryption is enable on my module xbee s1 and I know the key. What is the algorithm to decrypt the data payload ? Normally, in a 802.15.4 packet, there is the flag…
-1
votes
1 answer

Arduino Xbee Check if Connected to Coordinator

I have two Arduinos both with an Xbee on it. One as Coordinator and one as Router. The Router sends states of switches to the Coordinator. On start up i will send the initial states of my switches to the Coordinator. But the state isn't connected…
San
  • 868
  • 1
  • 9
  • 18
-1
votes
1 answer

Arduino Xbee Data parsing

Im sorry to make a post like this but i have tried everything and i cant get this working! I have two arduinos hooked up with xbee's. One is connected to my computer recieving data and the other is bettery powered and has a Wii nunchuck attached. I…
1 2 3
36
37