Hello everybody,
I'm just trying the MySensors protocol stack. I thought the easiest way to get it work and understand would be to have to nodes: one serial gateway and one dimmer.
I then thought i could connect the serial gateway to my favorite terminal program and see what the nodes are talking, I also thought that i should be able to send commands.
So I set everything up and I get the incoming messages on the serial terminal program:
0;0;3;0;14;Gateway startup complete.
0;0;3;0;9;read: 3-3-0 s=255,c=0,t=17,pt=0,l=5:1.4.1
3;255;0;0;17;1.4.1
0;0;3;0;9;read: 3-3-0 s=255,c=3,t=6,pt=1,l=1:0
3;255;3;0;6;0
0;0;3;0;9;read: 3-3-0 s=0,c=0,t=4,pt=0,l=5:1.4.1
3;0;0;0;4;1.4.1
0;0;3;0;9;read: 3-3-0 s=255,c=3,t=11,pt=0,l=11:DimmableLED
3;255;3;0;11;DimmableLED
0;0;3;0;9;read: 3-3-0 s=255,c=3,t=12,pt=0,l=3:1.1
3;255;3;0;12;1.1
0;0;3;0;9;read: 3-3-0 s=0,c=2,t=3,pt=0,l=0:
3;0;2;0;3;
This looks quite good to me. However now I want to send something so I type
3;0;1;0;3;50;\n
(of cause the \n is sent by the terminal program, i.e. it is the linefeed)
I expect this means send to node 3, childid 0, set command (1), no ack (0), V_dimmer type (3); value : 50
Then the DImmer node also seems to receive something because it says
read: 0-0-3 s=0,c=0,t=0,pt=0,l=1:\n
However I cannot see any changes in the brightness of the conneced LED. I also dont understand why:
3;0;1;0;3;99; does not work??!
I think I have something clearly missunderstood about any of the concepts? I hope you can help me.
Thanks
Dirk_H