Page 2 of 3

Re: Wifi attachment commands

Posted: Fri Dec 20, 2013 9:24 am
by rimai
Thanks!!
What you are getting is the intended result. It was a mistake on that post. I corrected it.
It has to be something within your code.
It is not the override as you can see it in here: http://forum.reefangel.com/status/chart ... filter=rfb
Can you open a new thread?

Re: Wifi attachment commands

Posted: Fri Dec 20, 2013 9:42 am
by lnevo
I'll start a new thread... just the typo was noticed when I tried to see if the override would help reset it.

Re: Wifi attachment commands

Posted: Mon Dec 23, 2013 9:34 pm
by binder
what is the usage of the /cal command? can it be used to trigger the calibration modes?

Re: Wifi attachment commands

Posted: Tue Dec 24, 2013 3:10 pm
by rimai
Yes, I updated the OP :)

Re: Wifi attachment commands

Posted: Tue Dec 24, 2013 3:31 pm
by binder
rimai wrote:Yes, I updated the OP :)
awesome. thanks :)

Re: Wifi attachment commands

Posted: Thu Apr 10, 2014 1:45 pm
by lnevo
There is no way to read/write a dword (i.e. InternalMemory.read_dword() / InternalMemory.write_dword() )

Need to ad a /md :)

Re: Wifi attachment commands

Posted: Thu Apr 10, 2014 2:02 pm
by rimai
Can you add a ticket on github?

Sent from my SPH-L710 using Tapatalk

Re: Wifi attachment commands

Posted: Thu Apr 10, 2014 2:18 pm
by lnevo
Yeah, I'll add this and need to add HighATOChannel to DCPump :)

Re: Wifi attachment commands

Posted: Fri Jun 13, 2014 2:55 am
by Hamid2
I have the same question, is there a schema for the data that /sr or /sa will return? The answer to genuflect is begged!! :? :? :? :? :? :? :? :?

Re: Wifi attachment commands

Posted: Fri Jun 13, 2014 8:43 pm
by binder
Hamid2 wrote:I have the same question, is there a schema for the data that /sr or /sa will return? The answer to genuflect is begged!! :? :? :? :? :? :? :? :?
If you want to know what the schema looks like, then you need to view the code. It's located in the RA_Wifi/RA_Wifi.cpp file. Here's a link to the github location of the file:
https://github.com/reefangel/Libraries/ ... A_Wifi.cpp

Around line 300, there will be a line that says "case REQ_R_STATUS:"
That section shows the the XML code that is generated by those 2 commands.

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