New Reef Angel User
Posted: Wed May 30, 2018 12:04 pm
Good evening from South Africa
I recently acquired a reef angel plus (second hand)
I am however experiencing difficulty in setting up the controller.
What have I done so far.
- Used the web wizard to generate a rather basic code (please see code below)
I did the test by inserting the IP address into my browser and was able to successfully turn the relays on and off.
However I cannot see my data on the portal nor on the app.
What have I done to combat the problem?
I entered by home networks IP address and added the IP address of the Reef Angel (ie 10.0.0.10) to be accepted via port 2000 (please refer to image below)
Trouble experienced
Every time I upload the code it runs through the process, reboots the controller but indicated "Error uploading" (please refer to image) After forwarding the port on my router I can now no longer access 10.0.0.10:2000 via my browser as I could have done previously.
The portal still does not identify my controller neither does the app.
Any assistance will be greatly appreciated
I recently acquired a reef angel plus (second hand)
I am however experiencing difficulty in setting up the controller.
What have I done so far.
- Used the web wizard to generate a rather basic code (please see code below)
- Installed and connected the wifi attachment to our home network. (received the following message) Based on the message I gathered that my reef angel IP address is 10.0.0.10 and that port 2000 has successfully been opened on my router.#include <ReefAngel_Features.h>
#include <Globals.h>
#include <RA_Wifi.h>
#include <Wire.h>
#include <OneWire.h>
#include <Time.h>
#include <DS1307RTC.h>
#include <InternalEEPROM.h>
#include <RA_NokiaLCD.h>
#include <RA_ATO.h>
#include <RA_Joystick.h>
#include <LED.h>
#include <RA_TempSensor.h>
#include <Relay.h>
#include <RA_PWM.h>
#include <Timer.h>
#include <Memory.h>
#include <InternalEEPROM.h>
#include <RA_Colors.h>
#include <RA_CustomColors.h>
#include <Salinity.h>
#include <RF.h>
#include <IO.h>
#include <ORP.h>
#include <AI.h>
#include <PH.h>
#include <WaterLevel.h>
#include <Humidity.h>
#include <DCPump.h>
#include <PAR.h>
#include <ReefAngel.h>
////// Place global variable code below here
////// Place global variable code above here
void setup()
{
// This must be the first line
ReefAngel.Init(); //Initialize controller
ReefAngel.SetTemperatureUnit( Celsius ); // set to Celsius Temperature
ReefAngel.Use2014Screen(); // Let's use 2014 Screen
ReefAngel.AddSalinityExpansion(); // Salinity Expansion Module
ReefAngel.AddPHExpansion(); // pH Expansion Module
// Ports toggled in Feeding Mode
ReefAngel.FeedingModePorts = 0;
// Ports toggled in Water Change Mode
ReefAngel.WaterChangePorts = 0;
// Ports toggled when Lights On / Off menu entry selected
ReefAngel.LightsOnPorts = 0;
// Ports turned off when Overheat temperature exceeded
ReefAngel.OverheatShutoffPorts = Port2Bit | Port4Bit;
// Use T1 probe as temperature and overheat functions
ReefAngel.TempProbe = T1_PROBE;
ReefAngel.OverheatProbe = T1_PROBE;
// Ports that are always on
////// Place additional initialization code below here
////// Place additional initialization code above here
}
void loop()
{
ReefAngel.DayLights( Port1 );
ReefAngel.StandardHeater( Port2 );
ReefAngel.Relay.DelayedOn( Port3 );
ReefAngel.StandardHeater( Port4 );
////// Place your custom code below here
////// Place your custom code above here
// This should always be the last line
ReefAngel.Portal( "Henkie" );
ReefAngel.DDNS( "10.0.0.10:2000" ); // Your DDNS is Henkie-10.0.0.10:2000 .myreefangel .com
ReefAngel.ShowInterface();
}
I did the test by inserting the IP address into my browser and was able to successfully turn the relays on and off.
However I cannot see my data on the portal nor on the app.
What have I done to combat the problem?
I entered by home networks IP address and added the IP address of the Reef Angel (ie 10.0.0.10) to be accepted via port 2000 (please refer to image below)
Trouble experienced
Every time I upload the code it runs through the process, reboots the controller but indicated "Error uploading" (please refer to image) After forwarding the port on my router I can now no longer access 10.0.0.10:2000 via my browser as I could have done previously.
The portal still does not identify my controller neither does the app.
Any assistance will be greatly appreciated