Page 3 of 3

Re: Wifi attachment commands

Posted: Wed Sep 10, 2014 7:55 am
by lnevo
Any way to add a command to clear a bus lock flag? If it's possible I'll open an issue.

Re: Wifi attachment commands

Posted: Wed Sep 10, 2014 8:08 am
by rimai
No, it clears automatically when the problem is resolved

Re: Wifi attachment commands

Posted: Sat Jun 25, 2016 9:24 pm
by soyrex
I could be missing something obvious.. but when I call the waterchange mode from the wifi... how do I take the RA out of WC mode? Do I make the same call again to toggle it?


Sent from my iPhone using Tapatalk

Re: Wifi attachment commands

Posted: Sat Jun 25, 2016 9:54 pm
by lnevo
/bp for button press

Re: Wifi attachment commands

Posted: Tue Jun 28, 2016 12:41 am
by soyrex
Of course looking at this now - it makes perfect sense. I'm going to blame being tired.

Do you know if there's a way to check if WC or Feed mode are already active?

Re: Wifi attachment commands

Posted: Tue Jun 28, 2016 8:47 am
by rimai
Yes. The SF flag is an 8 bit representation of different modes.
At the moment, we only use the first 3 bits.

Code: Select all

// Status Flag Bits
#define LightsOnFlag   	0
#define FeedingFlag   	1
#define WaterChangeFlag	2