From 9bf2ed09aad19eb1b1f0a132e9137102db631b54 Mon Sep 17 00:00:00 2001 From: Ronald Schaten Date: Sat, 17 Dec 2016 21:33:50 +0100 Subject: [PATCH] use pin 13 as wifi indicator --- things/HardwareSonoff.h | 1 + 1 file changed, 1 insertion(+) diff --git a/things/HardwareSonoff.h b/things/HardwareSonoff.h index 4e58c6b..16752f0 100644 --- a/things/HardwareSonoff.h +++ b/things/HardwareSonoff.h @@ -25,6 +25,7 @@ Device* devices[] = { }; void hardwareSetup() { + Homie.setLedPin(13, HIGH); pinMode(PIN_RELAY, OUTPUT); digitalWrite(PIN_RELAY, HIGH); };