I am trying to make wireless reed sensor work. I have done following:
Connected switch with wireless transmitter using Wireless Switch Sensor Kit. Attached pic.
Connected wireless receiver to pi using Slice of Pi Breakout Board, wireless base station.. Attached pic. Where does XRF ground wire go?
Got all privateeyepi software
On privatepi site, added GPIO number: 81.
Update globals for credentials and pin number though I am not sure I did it right for pin number. Here is Button B changes in globals.py
#Button B is the second button on the RF Switch
ButtonBList = []
ButtonBId = []
ButtonBList.append(81) # this is the device ID of the sensor
ButtonBId.append(81) # sensor number defined in the number field in t$
When I run "sudo python alarm.py" I get following error:
File "alarm.py", line 172, in main
BuildGPIOList()
File "alarm.py", line 61, in BuildGPIOList
ValueError: The channel sent is invalid on a Raspberry Pi
When I run "sudo python rfsensor.py", I get following error:
"No RF sensors defined on server"
Which python script I am supposed to run for wireless door switch? How do I go about debugging this.
Thanks