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
0
votes
1 answer

XBee and watchdog timer transmission not working

I've created a sketch that uses a watchdog timer that runs every eight seconds. I've used a counter to wait 64 seconds (about a minute). In addition, I've used the pin hibernation mode on the XBee. The XBee communication together with the pin…
kip
  • 3
  • 2
0
votes
0 answers

Xbee strangely sending random serial values

I've managed to connect to Xbees. One is attached to the CPU via XbeeExplorer and another one is a ElSequencer (An lilypad arduino board). The connection works great and I can send wireless signals using the serial monitor without problems.…
0
votes
1 answer

XBee communication with Arduino

I'm trying to setup a simple wireless link between two Arduinos, using two XBee modules and the XBee shield. I configure the coordinator with: ATID 2001 ATDL 4079D623 ATDH 0013A200 and the end device with ATID 2001 ATDL 4079D621 ATDH 0013A200 I…
lbedogni
  • 7,917
  • 8
  • 30
  • 51
0
votes
1 answer

Error 'Target out of bounds' when connecting through XBee to a server with Node.js/serialport

I have an XBee module that accepts data on ttyAMA0 of a Debian server that is running Node.js with 'serialport' installed. I keep getting an out-of-bounds error from the following code which take an XBee packet up to the length it should be. It then…
Senica Gonzalez
  • 7,996
  • 16
  • 66
  • 108
0
votes
1 answer

how to prevent coordinator listen itself

I have a xbee coordinator. I have broadcast message to the other xbees but coordiator gets its message and sends acknowledges to itself. How can I stop xbee coordinator which is configured as broadcaster to listen itself ?
0
votes
1 answer

type error occurred using buffer memoryview

I wanted to do a program which gets data from serial port which start and stop bit will be * and #. Data received will be in *1234567# this form. But it says my 'type' object is not subscriptable. I'm really new to Python i don't know what to do…
user2294001
  • 403
  • 1
  • 6
  • 6
0
votes
2 answers

Raspberry Pi API Mode Troubles

I am having the hardest time trying to get my XBEE's to work with my Raspberry pi (RP). I have one on a USB breakout board into my computer and the other XBEE connected to a RP. The one on the RP is the API coordinator and the one in the computer is…
Ryan F
  • 175
  • 3
  • 14
0
votes
1 answer

How to set I/O sampling rate to more than 65535 ms (FFFF)

I'm using an XBee module series 2 with firmware ZNET2.5 ROUTER/END DEVICE API. I would send an ADC sample, but I saw that the IR parameter can be at the maximum 65535 milliseconds; I read about the IR parameter for collecting more samples before to…
Nicola
  • 465
  • 2
  • 7
  • 19
0
votes
1 answer

duplicate objects in list

Im working on a programming project, I want to store some objects in a list but, but I cant get rid of the duplicates. This is my object nd = nodeAddress16=0x10,0x03, nodeAddress64=0x00,0x13,0xa2,0x00,0x40,0x6f,0x8d,0xfc, rssi=-47, nodeIdentifier=…
user2231558
0
votes
3 answers

Getting Information From Xbee In Java

I m trying to get some information from my Xbee but it s not working This is the code of my Class Test : public static void main (String[] args){ XBee xbee = new XBee(); try { xbee.open("COM3", 9600); } catch (XBeeException…
user2216648
  • 41
  • 2
  • 8
0
votes
4 answers

How can i convert double to another double C#?

How to convert 30.55273 to 30.055273 in C# i am working with xbee wireless module and it doesn't send fraction numbers so i have to cut any double value into two parts EX: 30.055273 -> 30 and 055273 so when i send both of them i receive them 30 and…
0
votes
1 answer

XBee Pro S1 - Nibo2 - receiving data does not work fluently

I'm currently working on a c project, having an XBee Pro Series 1 on my pc, allowing me to send data to my nibo2 roboter, also having that xbee module attached. Sending data from the nibo2 roboter to my pc works great and there is no kind of data…
tellob
  • 1,220
  • 3
  • 16
  • 32
0
votes
2 answers

OSC-address in MAX/MSP

Can anyone help me with a problem routing OSC messages? I'm using Python, MAX/MSP with OSC to communicate between Arduino Xbees. I hope there's someone out there!
RexTheRunt
  • 141
  • 1
  • 3
  • 12
-1
votes
1 answer

Xbee image transfer python

Hi there i'm quite new with xBee and struggle with data transferring. My objective is to take picture with Raspberry pi wide and send it back to computer via xBee by turn that image to hexlify code. after recieving the code with python on computer i…
-1
votes
1 answer

String not updating with changing variable

I am trying to update a string (MESSAGE) with a variable that is updated each time a message is sent (msg_no) I have poked around a bit and it looks like the msg_no variable is being updated the way I would like but the string (MESSAGE) is not being…