Thanks for the reply. I found this that you helped with:
I Have done the following:
void setup()
{
Serial.begin(9600);
//Ethernet.begin(mac, ip);
// Blynk.begin(auth, "blynk.cloud", 8080);
Blynk.config(auth, "blynk.cloud", 8080); // Initialise the Blynk connection settings
Blynk.connect();
pinMode(3, OUTPUT); //relay 1
pinMode(5, OUTPUT); //relay 2
pinMode(6, INPUT_PULLUP ); //shed1 light switch
pinMode(9, INPUT_PULLUP ); //shed2 light switch
timer.setTimeout(3600000L, [] () {} ); // dummy/sacrificial Function timers with ID 0 cannot be turned on/off
timer.setInterval(500, Timer);
}
void loop()
{
if (Blynk.connected())
{
Blynk.run();
}
timer.run();
}
I can now get into the timer, but Blynk doesnt connect