Wifi attachment commands
Re: Wifi attachment commands
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
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
Sent from my iPhone using Tapatalk
Re: Wifi attachment commands
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?
Do you know if there's a way to check if WC or Feed mode are already active?
Re: Wifi attachment commands
Yes. The SF flag is an 8 bit representation of different modes.
At the moment, we only use the first 3 bits.
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
Roberto.