WIFI Unable to configure

Expansion modules and attachments
Post Reply
gyruss
Posts: 6
Joined: Tue May 20, 2014 1:02 pm

WIFI Unable to configure

Post by gyruss »

Hi,
I'm configuring my new components and I'm in trouble with the wifi adapter.
I tried to configure it, but the configuration program (OSX) seems corrupted, then I have downloaded Tera Term on Windows, configured the COM3 port (for me) but anything appear on the console and is impossible for me to configure the wifi module.

I have to update the firmware before? How?

Have anyone any suggestion?

Thanks.
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: WIFI Unable to configure

Post by rimai »

Try using an older version of the wifi utility:
http://forum.reefangel.com/viewtopic.ph ... 20&p=39443
Roberto.
gyruss
Posts: 6
Joined: Tue May 20, 2014 1:02 pm

Re: WIFI Unable to configure

Post by gyruss »

It worked fine.

But now, when I connect to the controller I can see the web page, but I have the message: Unable to retrieve data.

I have connected the wifi with the controller and I have load in the controller a program wizard made w/wifi.

#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 <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.AddORPExpansion(); // ORP Expansion Module
ReefAngel.AddWaterLevelExpansion(); // Water Level 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 = 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( 300 );


// Ports that are always on

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


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

void loop()
{
ReefAngel.StandardATO( Port1,60 );
ReefAngel.StandardLights( Port4,14,30,22,0 );
ReefAngel.StandardHeater( Port7,230,250 );
////// Place your custom code below here


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

// This should always be the last line
ReefAngel.Portal( "gyruss" );
ReefAngel.ShowInterface();
}
gyruss
Posts: 6
Joined: Tue May 20, 2014 1:02 pm

Re: WIFI Unable to configure

Post by gyruss »

The problem is with chrome and firefox browsers, with safari it works fine.
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: WIFI Unable to configure

Post by rimai »

Yes, that web app is still in beta and has bugs with certain browsers.
Roberto.
Post Reply