parent
2b5a3cdde4
commit
2072a09df7
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue