No graphs on iPhone and portal

Basic / Standard Reef Angel hardware
Post Reply
raymond_q
Posts: 17
Joined: Mon Apr 08, 2013 7:17 pm

No graphs on iPhone and portal

Post by raymond_q »

Hey guys I'm having a issue with seeing the graphs on my iPhone and portal. I could see current temp, ph and relays that are on. I just used the wizard to generate my codes
User avatar
cosmith71
Posts: 1432
Joined: Fri Mar 29, 2013 3:51 pm
Location: Oklahoma City

Re: No graphs on iPhone and portal

Post by cosmith71 »

Do you mean you're accessing the portal from your iPhone browser?

--Colin
raymond_q
Posts: 17
Joined: Mon Apr 08, 2013 7:17 pm

Re: No graphs on iPhone and portal

Post by raymond_q »

No iPhone app and through a pc
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

Re: No graphs on iPhone and portal

Post by lnevo »

From my experience it means your RA is not sending data to the portal. When you view the portal or iphone app and you see the live data it is because your connecting to the RA. But if the graphs aren't getting data it's because somehow your RA is not forwarding. Can you post your code. I've seen this happen if the portal timer is used for other things.

Also can you confirm your iphone app and portal are seeing info when you log in?
raymond_q
Posts: 17
Joined: Mon Apr 08, 2013 7:17 pm

Re: No graphs on iPhone and portal

Post by raymond_q »

Posted: Fri Apr 19, 2013 11:01 am
Can you post your code?
Roberto.
Top
Quote
Report this post
raymond_q

Posts: 12
Joined: Mon Apr 08, 2013 7:17 pm
Posted: Wed Apr 24, 2013 6:25 pm
here is the code, temp is still flashing between current tank temp and error
#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
// Ports toggled in Feeding Mode
ReefAngel.FeedingModePorts = Port3Bit | Port5Bit | Port6Bit | Port7Bit | Port8Bit;
// Ports toggled in Water Change Mode
ReefAngel.WaterChangePorts = Port1Bit | Port2Bit | Port3Bit | Port5Bit | Port6Bit | Port7Bit | Port8Bit;
// 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( 830 );


// Ports that are always on
ReefAngel.Relay.On( Port3 );
ReefAngel.Relay.On( Port7 );
ReefAngel.Relay.On( Port8 );

////// Place additional initialization code below here


////// Place additional initialization code above here
}

void loop()
{
ReefAngel.StandardHeater( Port1,760,790 );
ReefAngel.SingleATO( true,Port2,240,0 );
ReefAngel.StandardLights( Port4,21,0,6,0 );
ReefAngel.Wavemaker( Port5,700 );
ReefAngel.Relay.Set( Port6, !ReefAngel.Relay.Status( Port5 ) );
////// Place your custom code below here


////// Place your custom code above here

// This should always be the last line
ReefAngel.Portal( "raymond_q" );
ReefAngel.ShowInterface();
}
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: No graphs on iPhone and portal

Post by rimai »

If you set a portal key, you need to change your code or disable the key in the portal.
Roberto.
raymond_q
Posts: 17
Joined: Mon Apr 08, 2013 7:17 pm

Re: No graphs on iPhone and portal

Post by raymond_q »

Do you mean the password key? If so it is disable
raymond_q
Posts: 17
Joined: Mon Apr 08, 2013 7:17 pm

Re: No graphs on iPhone and portal

Post by raymond_q »

Ok that worked thank you
Post Reply