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
vote
0 answers

ImportError: cannot import name UART

I am trying to use the UART library in micropython XBEE, but it gives me an error in the import. This is my code: from machine import UART uart = UART(1, 9600) # init with given baudrate uart.init(9600, bits=8, parity=None,…
Saul JP
  • 325
  • 2
  • 11
1
vote
1 answer

Zigbee interview process - xbee

I have a zigbee2mqtt / home assistant setup working fine, and I'd like to try to make my own simple devices to connect to that network. I got an xbee 3 board, and using micropython to start with I was able to connect to my network. However the…
Ulrar
  • 895
  • 8
  • 17
1
vote
1 answer

Xbee3 - Calculation of trigonometric values without math module

I'm using MicroPython on an Xbee3-24 and it has no math module internally. I need to calculate sin, cos and arctan values. How can I use trigonometric functions without using the math module?
Buğra Tufan
  • 33
  • 1
  • 6
1
vote
0 answers

Three Xbee synchronization blinking

I'm doing synchronization blinking with three XBee module and Arduino Uno, the first is master, second is slave/master and the other one is a slave. The master is going to give the command for both slave/master and slave to blinking, and when the…
1
vote
0 answers

XBee-Pro S1 Serial communication not working

I have 2 XBee Pro S1 antennas and boards with USB interface. I successfully connected both in Coordinator-End Point and Coordinator-Coordinator settings. I was able to send console log both antennas to each other. I'm facing issue while I'm trying…
Sachin
  • 21
  • 1
  • 4
1
vote
1 answer

How to send multiple commands to xbee router in one data packet transmission using arduino uno

I was wondering if I could control multiple IO pins on the xbee remotely with one command from a coordinator. I can easily send one IO pin high or low as…
1
vote
1 answer

How to control the motors via XBees wirelessly?

I am trying to control a motor wirelessly through XBee Proto Shields. The motor is controlled via an adafruit motor shield with one XBee ProtoShield stacked on top. WHat I am trying to do is, to send a signal from one protomshield connected to the…
1
vote
2 answers

Difference between API 1 and API 2 mode of XBee

I am having problem in finding the difference between between API 1 and API 2 mode of XBee . I have done my programming stuff and i have my master's thesis defence on Wednesday. I know how to use XBee but i am very weak in basics of RF. Please…
Manu
  • 177
  • 9
1
vote
1 answer

No matter what I ask my system to send, it only sends FF and FE

I created a system that will read CANBUS data from a vehicle and transmit it wirelessly to a "base station". As of now, my code works in the sense that it sends things over the data line to the xbee and the xbee sends it to the receiving module…
dfetz
  • 27
  • 1
1
vote
1 answer

How to run code using crontab on raspberry pi

I have to run code on the boot of raspberrypi. I am doing using this by below command @reboot while true; do timeout 600 python3 TestProgram.py; sleep 4; done & My program is not running. Please suggest me some corrections. Thanks in advance.
Manu
  • 177
  • 9
1
vote
2 answers

Configuring 2 XBee Modules on OSX for wireless connection

I am trying find out how and with which program for OSX (10.5.8) I can configure serial ports? I am trying to establish a wireless connection between two Xbee´s (RF modules) and cannot figure out how to use ZTerm nor screen under Terminal. The setup…
Annette
  • 11
  • 3
1
vote
0 answers

Raspberry Pi Uart to TCP bridge with multiple connections.

I would like to establish a TCP to UART (and back the other way) connection on a Raspberry Pi. This is to connect and establish communication from a computer to an XBee radio. I have accomplished this in about 3 ways but have never been able to…
Rob
  • 21
  • 1
1
vote
1 answer

Error in using XBee python library in raspberry Pi3

I want to use XBee python library in raspberry pi. when I run the code, I encounter the following Error Traceback (most recent call last): File "XBeeMQTT-V1.py", line 25, in from digi.xbee.devices import XBeeDevice …
user7656997
1
vote
1 answer

Transferring .csv files through XBee Modules

We have set up a Monitoring System that can collect data. The system consists of several RPi's with attached accelerometers that log the data to a .csv file. The RPi's are so spread out that they are not in reach of eachother and their own created…
user75374
  • 21
  • 4
1
vote
1 answer

Raspberry Pi only receiving transmit status when communicating with Arduino via XBee

I'm trying to send a character, in this case the letter 'H', via Xbee through a Raspberry Pi with an Xbee USB explorer attached to it and receive the response "Hello" from an Arduino with an Xbee attached to a wireless proto shield. Code on…