Adding sensors and relays to serial gateway
-
Hi! Do you have a gateway and a node working as a relay?
Child ID is assigned 0 for first sensor/accutor 1 for the next and so on... this is done automaticly if you use the relay sketch from http://www.mysensors.org/build/relay
for (int sensor=1, pin=RELAY_1; sensor<=NUMBER_OF_RELAYS;sensor++, pin++) { // Register all sensors to gw (they will be created as child devices) gw.present(sensor, S_LIGHT);```Maybe if you post your code and version its easier to help you, or what you have done so far.
-
Thanks for the fast reply!
At this point I have my arduino nano with the mysensors serial gateway sketch uploaded to it and I have a 4 relayboard connected to the arduino. As I said, i'm new to Arduino programming and such. So the first question is, what to do next? Upload that relay code and include the code you sent?
-
Thanks for the fast reply!
At this point I have my arduino nano with the mysensors serial gateway sketch uploaded to it and I have a 4 relayboard connected to the arduino. As I said, i'm new to Arduino programming and such. So the first question is, what to do next? Upload that relay code and include the code you sent?
-
I do have one arduino nano for the gateway, which is connected to my raspberry pi with the openHAB server. And furthermore I have four arduinos that I can use as nodes to connect sensors and relays to.
@Tino Then next thing to do is get the gateway (with radio) running with the gateway sketch and verify the working with the serial monitor.
If you completed that step, build the sensor node (with radio), load the relay sketch and verify if it connects to the gateway.
-
As said, I've uploaded the gateway code and received this: 0;0;3;0;14;Gateway startup complete
And I uploaded the http://www.mysensors.org/build/relay sketch to the other arduino, only changed the number of relays in the sketch. This is what I got from the relay sketch:find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
repeater started, id=105, parent=255, distance=255
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
find parent
send: 105-105-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc: -
Find parent means the node sends a request and trying to find its way to the gateway.
Do you see anything in the gateway log during this time? -
@AWI @Hoffan @sundberg84
I can see both sketches are working, this is what the gateway prints out:0;0;3;0;14;Gateway startup complete.
0;0;3;0;9;read: 105-105-0 s=255,c=0,t=18,pt=0,l=5:1.5.1
105;255;0;0;18;1.5.1
0;0;3;0;9;read: 105-105-0 s=255,c=3,t=6,pt=1,l=1:0
105;255;3;0;6;0
0;0;3;0;9;read: 105-105-0 s=255,c=3,t=11,pt=0,l=5:Relay
105;255;3;0;11;Relay
0;0;3;0;9;read: 105-105-0 s=255,c=3,t=12,pt=0,l=3:1.0
105;255;3;0;12;1.0
0;0;3;0;9;read: 105-105-0 s=1,c=0,t=3,pt=0,l=0:
105;1;0;0;3;
0;0;3;0;9;read: 105-105-0 s=2,c=0,t=3,pt=0,l=0:
105;2;0;0;3;
0;0;3;0;9;read: 105-105-0 s=3,c=0,t=3,pt=0,l=0:
105;3;0;0;3;
0;0;3;0;9;read: 105-105-0 s=4,c=0,t=3,pt=0,l=0:
105;4;0;0;3;Is this correct?