Hello,
for a project I need to send sensor data to a gateway.
For this I followed the following tutorial:
https://www.mysensors.org/build/connect_radio
https://www.mysensors.org/build/temp
https://www.mysensors.org/build/raspberry
The output of my Arduino looks like this:
16 MCO:BGN:INIT NODE,CP=RNNNA---,FQ=8,REL=255,VER=2.3.2
28 MCO:BGN:BFR
51 TSM:INIT
53 TSF:WUR:MS=0
61 TSM:INIT:TSP OK
61 TSM:FPAR
65 ?TSF:MSG:SEND,255-255-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
2074 !TSM:FPAR:NO REPLY
2076 TSM:FPAR
2078 ?TSF:MSG:SEND,255-255-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
4087 !TSM:FPAR:NO REPLY
4089 TSM:FPAR
4091 ?TSF:MSG:SEND,255-255-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
6103 !TSM:FPAR:NO REPLY
6105 TSM:FPAR
6107 ?TSF:MSG:SEND,255-255-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
8116 !TSM:FPAR:FAIL
8118 TSM:FAIL:CNT=1
8120 TSM:FAIL:DIS
8122 TSF:TDI:TSL
18124 TSM:FAIL:RE-INIT
18126 TSM:INIT
18132 TSM:INIT:TSP OK
18135 TSM:FPAR
18139 ?TSF:MSG:SEND,255-255-255-255,s=255,c=3,t=7,pt=0,l=0,sg=0,ft=0,st=OK:
20148 !TSM:FPAR:NO REPLY
The Raspberry has the following output (in debug mode):
pi@raspberrypi:~/MySensors $ sudo ./bin/mysgw
Mar 04 13:25:39 INFO Starting gateway...
Mar 04 13:25:39 INFO Protocol version - 2.4.0-alpha
Mar 04 13:25:39 DEBUG MCO:BGN:INIT GW,CP=RNNGL---,FQ=NA,REL=0,VER=2.4.0-alpha
Mar 04 13:25:39 DEBUG TSF:LRT:OK
Mar 04 13:25:39 DEBUG TSM:INIT
Mar 04 13:25:39 DEBUG TSF:WUR:MS=0
Mar 04 13:25:39 DEBUG TSM:INIT:TSP OK
Mar 04 13:25:39 DEBUG TSM:INIT:GW MODE
Mar 04 13:25:39 DEBUG TSM:READY:ID=0,PAR=0,DIS=0
Mar 04 13:25:39 DEBUG MCO:REG:NOT NEEDED
Mar 04 13:25:39 DEBUG Listening for connections on pE��:5003
Mar 04 13:25:39 DEBUG MCO:BGN:STP
Mar 04 13:25:39 DEBUG MCO:BGN:INIT OK,TSP=1
Mar 04 13:25:39 DEBUG TSM:READY:NWD REQ
Mar 04 13:25:40 DEBUG ?TSF:MSG:SEND,0-0-255-255,s=255,c=3,t=20,pt=0,l=0,sg=0,ft=0,st=OK:
Can someone maybe tell me where my error is and how I can read the sensor data?