Revert "Arduino builder error test"

This reverts commit 97cf7e37e6.
This commit is contained in:
GHOSCHT 2020-08-02 10:57:09 +02:00
parent 2b5a3cdde4
commit 2072a09df7

View file

@ -6,7 +6,8 @@ const int relayPin[relayCount] = {3, 4, 5, 6};
const int btnPin[relayCount] = {7, 8, 9, 10};
byte relayState[relayCount] = {HIGH, HIGH, HIGH, HIGH}; //high -> relay off
byte buttonState[relayCount] byte lastButtonState[relayCount];
byte buttonState[relayCount];
byte lastButtonState[relayCount];
String receivedCom;
String statusToSend;