Portal unreachable adress

Expansion modules and attachments
Post Reply
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Portal unreachable adress

Post by AquaO »

I have an error on the portal ''unreachable adress'' and the iphone ''Unable to connect'' I configure the wifi with my router with DNS. The module blinking green and I have access to the temperature, ph and orp but I'm not able to set the relay or accessed in memory. Same thing with the iphone.

I dont have a 2 way comunication only read.

Thank Eric
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
Sebyte

Re: Portal unreachable adress

Post by Sebyte »

Have you setup port forwarding on your router?
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Portal unreachable adress

Post by AquaO »

Sebyte wrote:Have you setup port forwarding on your router?
Sorry I do not know how? I assume that it's in the router configuration?
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
Sebyte

Re: Portal unreachable adress

Post by Sebyte »

The manual for your router should have the instructions. If not Google your router type and port forwarding.

Also have a look at

http://en.wikipedia.org/wiki/Port_forwarding
dbmet
Posts: 235
Joined: Thu Nov 10, 2011 11:49 am

Re: Portal unreachable adress

Post by dbmet »

Some people have had luck using this site..
http://www.simpleportforwarding.com/
Image
barbianj
Posts: 56
Joined: Sat Jul 21, 2012 12:25 pm

Re: Portal unreachable adress

Post by barbianj »

With a newer router, you may be able to log in and do it through the browser. Check that the router's firmware is up to date, also.
Image
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Re: Portal unreachable adress

Post by AquaO »

Thank you very much for your help, after several hours reading and trying, the portal works correctly.
It is only now around 10 am that everything works correctly.

One small thing is that the web banner does not seem to update.
If I change the name of the relay it's updated but not the data.

I think the problem comes from the portal ...
Have you any idea?
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Portal unreachable adress

Post by rimai »

That means the controller is still not sending data to the server.
Check if you have the Portal() function in your code.
Which application did you use to configure the wifi attachment?
Roberto.
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Portal unreachable adress

Post by AquaO »

Everything works in the portal, I can activate ports (on/off) it's only the banner and the iphone app does not work.

I configured the wifi expansion with Dns button (wifi and router) for generated my code I use the wizard.

This is my code:

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
    // Ports toggled in Feeding Mode
    ReefAngel.FeedingModePorts = Port1Bit | Port2Bit | Port3Bit | Port5Bit | Port6Bit | Port7Bit;
    // 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( 869 );

    // Ports that are always on
    ReefAngel.Relay.On( Port1 );
    ReefAngel.Relay.On( Port2 );
    ReefAngel.Relay.On( Port3 );
    ReefAngel.Relay.On( Port5 );
    ReefAngel.Relay.On( Port6 );
    ReefAngel.Relay.On( Port7 );
    ReefAngel.Relay.On( Box1_Port1 );
    ReefAngel.Relay.On( Box1_Port2 );
    ReefAngel.Relay.On( Box1_Port3 );
    ReefAngel.Relay.On( Box1_Port4 );
    ////// Place additional initialization code below here
    
    ////// Place additional initialization code above here
}
void loop()
{
    ReefAngel.StandardLights( Port4,16,0,22,0 );
    ReefAngel.DosingPumpRepeat( Port8,0,60,70 );
    ////// Place your custom code below here
    
    ////// Place your custom code above here
    // This should always be the last line
    ReefAngel.Portal( "AquaO" );
    ReefAngel.ShowInterface();
}
void DrawCustomMain()
{
    int x,y;
    char text[10];
    // Parameters
#if defined DisplayLEDPWM && ! defined RemoveAllLights
    ReefAngel.LCD.DrawMonitor( 15, 20, ReefAngel.Params,
    ReefAngel.PWM.GetDaylightValue(), ReefAngel.PWM.GetActinicValue() );
#else // defined DisplayLEDPWM && ! defined RemoveAllLights
    ReefAngel.LCD.DrawMonitor( 15, 20, ReefAngel.Params );
#endif // defined DisplayLEDPWM && ! defined RemoveAllLights
    pingSerial();
    // ORP
    ReefAngel.LCD.DrawText( COLOR_PALEVIOLETRED,DefaultBGColor,75,66, "ORP:" );
    ReefAngel.LCD.DrawText( COLOR_PALEVIOLETRED,DefaultBGColor,99,66, ReefAngel.Params.ORP );
    pingSerial();
    // Main Relay Box
    byte TempRelay = ReefAngel.Relay.RelayData;
    TempRelay &= ReefAngel.Relay.RelayMaskOff;
    TempRelay |= ReefAngel.Relay.RelayMaskOn;
    ReefAngel.LCD.DrawOutletBox( 12, 93, TempRelay );
    pingSerial();
    // Date and Time
    ReefAngel.LCD.DrawDate( 6, 122 );
    pingSerial();
}
void DrawCustomGraph()
{
}
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Re: Portal unreachable adress

Post by AquaO »

The portal has run well all day (turn on/off relay) and good data (temp,ph,orp), but now sometimes it disconnects and I have a unreachable adress and other times it's ok.

This is my setup:
Reef Angel wifi address: 70.82.xx.xx:2000

My virtual server:
Service Name Port Range Local IP Local Port Protocol
reefangel 2000:2000 192.168.1.2 2000 TCP

I used the WPS button for wifi/router and I use the wizard for the code
The banner and iphone app not work.

Thank you for your help
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Portal unreachable adress

Post by rimai »

May I ask to use Dave's utility and pull the wifi settings?
You can download the utility on the contribution download page of the website.
Roberto.
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Portal unreachable adress

Post by AquaO »

yes I also try with wifi utility without success ... tell the truth it's been several days that I try several configurations.

I will ask a friend who knows the network to help me.

Thank you
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Portal unreachable adress

Post by rimai »

ok, can you post the results of "get e" command when you use Tera Term?
Roberto.
Post Reply