-->
Page 20 of 22

Re: ESP8266 with easy webconfig

PostPosted: Fri Sep 18, 2015 7:32 am
by pipi61
try It from mobiletelephone
Whats your computer ip address?
Destktop wired network not identical IP address range.

Re: ESP8266 with easy webconfig

PostPosted: Thu Oct 08, 2015 8:56 am
by Inspirondk
A quick question. What pin belongs to the time on/off on the general page? Can't seem to find it in the arduino code or on john-lassen.de

Re: ESP8266 with easy webconfig

PostPosted: Fri Oct 09, 2015 4:36 am
by ppet
You must enter into the sketch what you need:
In code below for test I add "Serial.println("SwitchON");" and it's working. So change it like you want.

Minute_Old = DateTime.minute;
if (config.AutoTurnOn)
{
if (DateTime.hour == config.TurnOnHour && DateTime.minute == config.TurnOnMinute)
{
Serial.println("SwitchON");
}
}


Minute_Old = DateTime.minute;
if (config.AutoTurnOff)
{
if (DateTime.hour == config.TurnOffHour && DateTime.minute == config.TurnOffMinute)
{
Serial.println("SwitchOff");
}

Re: ESP8266 with easy webconfig

PostPosted: Mon Oct 12, 2015 12:54 am
by Inspirondk
Ahhh. Now i see. Got it working!! Thx alot :)