My controller

Post Reply
binder
Posts: 2865
Joined: Fri Mar 18, 2011 6:20 pm
Location: Illinois
Contact:

Re: My controller

Post 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
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: My controller

Post by rimai »

For the Client problem, take a look at this... It may help:
http://forum.reefangel.com/viewtopic.php?p=4217#p4217
Roberto.
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: My controller

Post 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
Roberto.
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: My controller

Post by rimai »

Negative.
The ReefAngelSimple is too old and can't support the wifi code.
It's pretty maxed out already.
Roberto.
Post Reply