Skip to content

Commit

Permalink
Merge pull request #664 from visualapproach/development_v4
Browse files Browse the repository at this point in the history
Development v4
  • Loading branch information
visualapproach authored Jan 13, 2024
2 parents 21a702e + cbd4d61 commit 9400ba6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Code/lib/dsp/DSP_54123.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ class DSP_54123 : public DSP_4W
{0,0,1,2} //the "2" means both heater elements
};

const uint8_t PUMPBITMASK = B00010000; //1 << 4;
const uint8_t PUMPBITMASK = B00010000; //1 << 4;
const uint8_t BUBBLESBITMASK = B00100000; //1 << 5;
const uint8_t JETSBITMASK = B00000000; //0; //no jets on this machine.
const uint8_t HEATBITMASK1 = B00000010; //(1 << 1) "stage 1"
const uint8_t HEATBITMASK2 = B00001000; //(1 << 3) "stage 2" (thanks @dietmar-1 for testing and reporting this)
const uint8_t POWERBITMASK = B00000001; //1;
const uint8_t JETSBITMASK = B00000000; //0; //no jets on this machine.
const uint8_t HEATBITMASK1 = B00000010; //(1 << 1) "stage 1"
const uint8_t HEATBITMASK2 = B00001000; //(1 << 3) "stage 2" (thanks @dietmar-1 for testing and reporting this)
const uint8_t POWERBITMASK = B00000001; //1;
const bool _HASJETS = false;
const bool _HASAIR = true;
};
3 changes: 2 additions & 1 deletion Code/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ platform = espressif8266@^4
board = nodemcuv2
framework = arduino
lib_deps =
bblanchon/ArduinoJson
bblanchon/ArduinoJson@6.21.2
; mcxiaoke/ESPDateTime
links2004/WebSockets
knolleary/PubSubClient
me-no-dev/ESPAsyncTCP
; khoih-prog/ESP_WifiManager@^1.12.1
tzapu/WifiManager
https://github.com/dok-net/ghostl ; << Fix missing circular_queue.h in plerup/[email protected]
plerup/EspSoftwareSerial
milesburton/DallasTemperature
board_build.filesystem = littlefs
Expand Down
Binary file modified bwc-manual.pdf
Binary file not shown.

0 comments on commit 9400ba6

Please sign in to comment.