Page 1 of 1

Can't download reef angel installer

Posted: Sun Mar 03, 2013 8:15 pm
by Redadeath
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

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 9:49 am
by rimai
What is a rag?

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 1:22 pm
by Redadeath
reef angel generator.exe

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 1:28 pm
by rimai
That is long gone and deprecated.
You should use the Reef Angel Wizard.
http://forum.reefangel.com/viewtopic.php?f=8&t=1297

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 4:25 pm
by Redadeath
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

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 4:27 pm
by rimai
WDT is a built-in feature that is enabled on all RAs now.
Yes, you can change memory settings from ipad.

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 5:26 pm
by Redadeath
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
photo.PNG
photo.PNG (181.34 KiB) Viewed 6076 times
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

Can't download reef angel installer

Posted: Mon Mar 04, 2013 5:31 pm
by lnevo
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...

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 5:52 pm
by Redadeath
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

Can't download reef angel installer

Posted: Mon Mar 04, 2013 6:34 pm
by lnevo
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

Posted: Mon Mar 04, 2013 6:49 pm
by rimai
Don't use MH hours...
The wizard doesn't use those memory locations...
It uses the std lights schedule.

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 7:05 pm
by Redadeath
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

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 7:19 pm
by rimai
Can you post your code?

Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 7:25 pm
by Redadeath

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();
}


Re: Can't download reef angel installer

Posted: Mon Mar 04, 2013 7:39 pm
by rimai
You need to choose internal memory path when generating your code through the wizard.

Can't download reef angel installer

Posted: Mon Mar 04, 2013 7:52 pm
by lnevo
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.