Node does not present sketch info?
-
Hi,
I have a node that refuses to provide back sketch info, any ideas?
code is here: http://pastebin.com/LXcUKk81
-
@Mark-Swift - the node log would be great as well for us to help you.
-
I see this in the node debug log when I make the request for presentation via MYScontroller...
I don't think it's a radio issue and I've tried with multiple radios and everything else is working great now!
read: 0-3-4 s=0,c=3,t=19,pt=0,l=1,sg=0:0
send: 4-4-3-0 s=255,c=3,t=15,pt=0,l=2,sg=0,st=ok:
send: 4-4-3-0 s=255,c=0,t=18,pt=0,l=10,sg=0,st=ok:2.0.0-beta
send: 4-4-3-0 s=255,c=3,t=6,pt=1,l=1,sg=0,st=ok:3
read: 0-3-4 s=255,c=3,t=15,pt=0,l=2,sg=0:
read: 0-3-4 s=255,c=3,t=6,pt=0,l=1,sg=0:MAttached is a screenshot of what I see in MYScontroller
-
What version of MySensors are you using? You are using the development branch syntax:
sendSketchInfo("MowerGarage", "1.8");
instead of the traditional:
gw.sendSketchInfo("MowerGarage", "1.8");
but do not use the development ordering of:
void setup()
void presentation()
void loop()
-
i'm using the latest development branch... I believe there's no void presentation?
edit: crap, noob error, I missed my presentation loop!