Skip to content

Commit

Permalink
Finishing the 1.4.0 HW Paperwork
Browse files Browse the repository at this point in the history
  • Loading branch information
TJLTM committed Jul 19, 2023
1 parent 6869f4b commit 7dcfc1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Binary file modified BOM/MakeItRain - Main Board - Bom.xls
Binary file not shown.
12 changes: 6 additions & 6 deletions Code/MakeItRain-FW/MakeItRain-FW.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ WiFiClient wifiClient;
PubSubClient mqttClient(wifiClient);

//System Level
String Version PROGMEM = "0.0.6";
//Target HW Version for this code is v1.3.2
String Version PROGMEM = "0.0.7";
//Target HW Version for this code is v1.4.0
bool EnableMQTT, APMode, EnableWifi, Battery, LocalControlLockOut, APEnabled, LastLocalControlLockOut, ZoneExpansionDaughterboard = false;
String Name PROGMEM = "MakeItRain";
String ID;
Expand Down Expand Up @@ -510,10 +510,10 @@ void CheckIfInputsHaveChanged() {
//-----------------------------------------------------------------------------------
void LocalInputs(bool State) {
if (State == true) {
attachInterrupt(digitalPinToInterrupt(Input1), LocalInput1, FALLING);
attachInterrupt(digitalPinToInterrupt(Input2), LocalInput2, FALLING);
attachInterrupt(digitalPinToInterrupt(Input3), LocalInput3, FALLING);
attachInterrupt(digitalPinToInterrupt(Input4), LocalInput4, FALLING);
attachInterrupt(digitalPinToInterrupt(Input1), LocalInput1, RISING);
attachInterrupt(digitalPinToInterrupt(Input2), LocalInput2, RISING);
attachInterrupt(digitalPinToInterrupt(Input3), LocalInput3, RISING);
attachInterrupt(digitalPinToInterrupt(Input4), LocalInput4, RISING);
interrupts();
}
else {
Expand Down

0 comments on commit 7dcfc1d

Please sign in to comment.