Can't download reef angel installer
Can't download reef angel installer
I downloaded rag from website but seems I got only aurueno icon and rag icon is missing when I click it from start menue I get error missing icon any help plz I am running windows vista 32 bit
when it comes to programming i "always need help "
Re: Can't download reef angel installer
reef angel generator.exe
when it comes to programming i "always need help "
Re: Can't download reef angel installer
That is long gone and deprecated.
You should use the Reef Angel Wizard.
http://forum.reefangel.com/viewtopic.php?f=8&t=1297
You should use the Reef Angel Wizard.
http://forum.reefangel.com/viewtopic.php?f=8&t=1297
Roberto.
Re: Can't download reef angel installer
does the wizard provides "watchdogtimer"
and how can i manually change dimiing lights after i install the wizard from ipad application if i need to change the ratio of lights later from my ipad
sorry for my language it is not my mother language
thank you roberto
and how can i manually change dimiing lights after i install the wizard from ipad application if i need to change the ratio of lights later from my ipad
sorry for my language it is not my mother language
thank you roberto
when it comes to programming i "always need help "
Re: Can't download reef angel installer
WDT is a built-in feature that is enabled on all RAs now.
Yes, you can change memory settings from ipad.
Yes, you can change memory settings from ipad.
Roberto.
Re: Can't download reef angel installer
i coded my reef angel with the wizard and now if i need to change any values in the ipad app
it just say memory update but really nothing change
as u can see
when i try to change the metalhalide on off time and press save then close the application or go to main menue it return back to this settings
whatever i change and click save it says "memmory updated " but really nothing changes and the light on my display tank still have the same ratio
the only working thing is the main really controll
on/off relay 1
2
3
etc
it just say memory update but really nothing change
as u can see
when i try to change the metalhalide on off time and press save then close the application or go to main menue it return back to this settings
whatever i change and click save it says "memmory updated " but really nothing changes and the light on my display tank still have the same ratio
the only working thing is the main really controll
on/off relay 1
2
3
etc
when it comes to programming i "always need help "
Can't download reef angel installer
Yeah i think there is a problem with the ios app...never works for me either. I just use http and go straight to the controller.
Http://reefangelwifi:2000/mi100,1
As an example mi is for int, mb would be for byte and the value after comma is what you want to set...
I know not as elegant, but a workaround...
Http://reefangelwifi:2000/mi100,1
As an example mi is for int, mb would be for byte and the value after comma is what you want to set...
I know not as elegant, but a workaround...
Re: Can't download reef angel installer
i dont think this is the case "ios problem " because i downloade on both ipad and iphone
and both give the same readings
so i think it is the main unit problem
waiitng for help
thank you all
and both give the same readings
so i think it is the main unit problem
waiitng for help
thank you all
when it comes to programming i "always need help "
Can't download reef angel installer
iPad and iPhone are both iOS apps....I think the function that does memory does not work on either. I've tried on both as well.
Re: Can't download reef angel installer
Don't use MH hours...
The wizard doesn't use those memory locations...
It uses the std lights schedule.
The wizard doesn't use those memory locations...
It uses the std lights schedule.
Roberto.
Re: Can't download reef angel installer
but i cannot aslo control pwm of leds
whan i canhe it to any % nothing changes
i also tries client suit : 3 and the same issue
whan i canhe it to any % nothing changes
i also tries client suit : 3 and the same issue
when it comes to programming i "always need help "
Re: Can't download reef angel installer
Code: Select all
#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 <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
// Ports toggled in Feeding Mode
ReefAngel.FeedingModePorts = Port1Bit | Port2Bit;
// 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 = 0;
// Use T1 probe as temperature and overheat functions
ReefAngel.TempProbe = T1_PROBE;
ReefAngel.OverheatProbe = T1_PROBE;
// Set the Overheat temperature setting
InternalMemory.OverheatTemp_write( 896 );
// Ports that are always on
ReefAngel.Relay.On( Port1 );
////// Place additional initialization code below here
////// Place additional initialization code above here
}
void loop()
{
ReefAngel.Relay.DelayedOn( Port2,5 );
ReefAngel.StandardHeater( Port3,240,250 );
ReefAngel.StandardFan( Port4,250,260 );
ReefAngel.StandardLights( Port7,14,0,20,0 );
ReefAngel.MHLights( Port8,16,0,18,0,0 );
ReefAngel.PWM.SetDaylight( PWMParabola(14,0,20,0,15,40,15) );
ReefAngel.PWM.SetActinic( PWMParabola(14,0,20,0,50,80,50) );
////// Place your custom code below here
////// Place your custom code above here
// This should always be the last line
ReefAngel.Portal( "redadeath" );
ReefAngel.ShowInterface();
}
when it comes to programming i "always need help "
Re: Can't download reef angel installer
You need to choose internal memory path when generating your code through the wizard.
Roberto.
Can't download reef angel installer
Its still not going to work from the phone...just my experience...if it does please lmk.
If it did his values in the app would have changed with no effect instead of reverting.
If it did his values in the app would have changed with no effect instead of reverting.