Questions tagged [xbee]

a family of short range communication radio modules

36 questions
3
votes
1 answer

Minicom missing 0x00 output from Xbee

I connected my Raspberry Pi to an Xbee module and used minicom to read data from it. All the data is read out fine except that it missing 0x00 strings. For example, if Xbee sends out data in HEX stream 7E 00 92 00 3A 55 00 01 00 01 77 00 3E…
Dave J.
  • 41
  • 3
3
votes
1 answer

How to import Xbee to Python?

I would like to handle my xbee with raspberry pi via Python. I install xbee with this command: pip install xbee And I try to use this example code: #! /usr/bin/python # Import and init an XBee device from xbee import XBee,ZigBee import serial ser…
szuniverse
  • 495
  • 1
  • 8
  • 15
2
votes
1 answer

Using Raspberry Pi with XBee

I'm working in a project to make a communication between the RPi and the XBee module, but I really don't know how to begin. I'm looking for some ebooks to learn but I didn't find yet. Does anyone have some idea about how to begin?
Petry
  • 21
  • 1
2
votes
0 answers

XBee library for Raspberry Pi

Is there any existing easy way to install a library for XBee in Raspberry Pi? I found a library, but I don't yet posess the knowledge to get that library to work on the Raspberry Pi. I have the XBee hooked up to my USB port and want to write a…
Christian
  • 1,230
  • 1
  • 13
  • 25
2
votes
3 answers

RF transceiver and XBee module, both need UART?

I'm working an a home automation project, using a Raspberry Pi. What I want to do is connect an RF 433 MHz transmitter to control RF-controlled light switches, and a ZigBee/XBee module to connect to other devices such as curtain rails. I will…
PeterH
  • 123
  • 4
1
vote
1 answer

Xbee-API python

I'm trying to use my Raspberry Pi B+ as a gateway so others sensors, also with xbee, can send data and get a few kind of commands by it. The problem is that i can only read the data with the simplest code: import time import serial import RPi.GPIO…
SWoto
  • 117
  • 1
  • 1
  • 9
1
vote
2 answers

Reading values from XBee Pro S1 via Putty

Presently I was working on serial communication between Raspberry Pi and PC via XBee Pros. I was able to send serial data correctly from Raspberry Pi. I confirmed this by minicom program minicom -b 9600 -o -D /dev/ttyAMA0 command. But when I connect…
nbsrujan
  • 577
  • 3
  • 6
  • 16
1
vote
1 answer

Make Raspberry Pi to work as AP and Station to receive wireless temperature sensor values

Hi after reading the manual of Xbee device, I am able to use XBee device with raspberry pi. But how to make raspberry pi to work as an access point as well as the station at the same time? using access point it will receive the data from mesh-based…
bert allen
  • 11
  • 2
1
vote
1 answer

Communication with XBee devices

I am going to build a sensor network composed by some Arduino Fio that will collect some data and send it to a RaspberryPi. After a little research it seems that XBee would be a good choice for the communication between the Fios and the…
mariosangiorgio
  • 213
  • 1
  • 2
  • 9
1
vote
1 answer

Raspberry Pi 3 with Python and XBee S2 Pro

I used to use the RPi 2b and had no problems with my Xbee codes but this new RPi3 is killing me. I can not read from my XBee model S2 Pro anymore. Following instructions from other forums I have changed the TTY to S0 with SERIALPORT =…
Cybergei
  • 71
  • 2
  • 6
1
vote
1 answer

/dev/ttyusb0 cannot be find while starting script on boot for raspberrry pi

(Currently using Raspbian Jessie latest) So currently I am trying to start a script that reads from the rf receiver and gathers the data and sends it over to the cloud... I am trying to start this script on every boot of the Raspberry Pi 2 B+,…
1
vote
1 answer

Retrieving Sensor data via Xbee

I have 2 XBee radios, one works as a coordinator and one as a router. The coordinator is connected to my raspberry pi 3 and the router is connected to an analog temperature sensor (TMP36). I'm also using a python script to collect the sensor…
1
vote
0 answers

Receiving serial data from XBee

I am using this source code for an application of reading serial data from an XBee connected to my Windows machine to the Raspberry Pi. The data being sent is the y position of my left and right thumb stick on my XBee controller, for the purpose of…
Zotto
  • 45
  • 1
  • 6
1
vote
1 answer

Raspbian Jessie and an Xbee

I've been beating my head on the table for days trying to figure this out. For the life of me I cannot seem to get my Raspberry Pi 3 serial port to communicate with the Xbee Series 2. I checked my /boot/cmdline.txt and there are no references to…
Myg0t
  • 111
  • 10
1
vote
0 answers

XBee and Zigbee Door Lock Software Design Issue

I am working on automating my home that is currently under construction. I am using a Raspberry Pi Model B + XBee Pro2 (http://www.amazon.in/gp/product/B007R9U1QA?psc=1&redirect=true&ref_=oh_aui_detailpage_o08_s00) as the hub. I wanted to buy a…
Ashish
  • 109
  • 3
1
2 3