Page 1 of 1

Re: My controller

Posted: Tue Dec 27, 2011 12:03 pm
by binder
Your first error is that you have my Development libraries loaded and not the Standard libraries. You will want to switch to the Standard libraries to use the StandardGUI function.
If you plan to use the Development libraries (recommended for more functionality), you will need a lot more includes in the PDE file. So the equivalent to the code you provided would be:

Code: Select all

#include <ReefAngel_Features.h>
#include <ReefAngel_Globals.h>
// this next line only needed if you plan on doing any USB or WIFI communications
// so if you are going to use Client Suite, you need this line
//#include <ReefAngel_Wifi.h>
#include <Wire.h>
#include <OneWire.h>
#include <Time.h>
#include <DS1307RTC.h>
#include <ReefAngel_EEPROM.h>
#include <ReefAngel_NokiaLCD.h>
#include <ReefAngel_ATO.h>
#include <ReefAngel_Joystick.h>
#include <ReefAngel_LED.h>
#include <ReefAngel_TempSensor.h>
#include <ReefAngel_Relay.h>
#include <ReefAngel_PWM.h>
#include <ReefAngel_Timer.h>
#include <ReefAngel_Memory.h>
#include <ReefAngel.h>


void setup()
{
    ReefAngel.Init();  //Initialize controller
}

void loop()
{
    ReefAngel.ShowInterface();
}
The Client Suite will only work with the Development Libraries.

curt

Re: My controller

Posted: Tue Dec 27, 2011 2:18 pm
by rimai
For the Client problem, take a look at this... It may help:
http://forum.reefangel.com/viewtopic.php?p=4217#p4217

Re: My controller

Posted: Wed Dec 28, 2011 2:04 pm
by rimai
According to the couple last posts, Dave is working on a solution for the problem.
There is a bug on the software when Celsius is used instead of Fahrenheit.
The alternative for changing internal memory values for now is the Status app from Curt:
http://forum.reefangel.com/viewtopic.php?f=8&t=246

Re: My controller

Posted: Wed Dec 28, 2011 4:15 pm
by rimai
Negative.
The ReefAngelSimple is too old and can't support the wifi code.
It's pretty maxed out already.