Merging in current state of code. #3

Merged
cgiacofei merged 8 commits from dev into master 2023-01-27 11:06:22 -05:00
Showing only changes of commit d764d1d671 - Show all commits

View File

@ -11,15 +11,12 @@
OneWire oneWire(ONE_WIRE_BUS); OneWire oneWire(ONE_WIRE_BUS);
DallasTemperature sensors(&oneWire); DallasTemperature sensors(&oneWire);
WiFiClient net;
byte glycol_ds18b20[8] = {0x28,0xFF,0x64,0x0E,0x7F,0x57,0x09,0x66}; byte glycol_ds18b20[8] = {0x28,0xFF,0x64,0x0E,0x7F,0x57,0x09,0x66};
byte fermA_ds18b20[8] = {0x28,0xFF,0x64,0x0E,0x7F,0x55,0x1C,0x55}; byte fermA_ds18b20[8] = {0x28,0xFF,0x64,0x0E,0x7F,0x55,0x1C,0x55};
byte fermB_ds18b20[8] = {0x28,0xFF,0x64,0x0E,0x71,0x86,0xF1,0xB8}; byte fermB_ds18b20[8] = {0x28,0xFF,0x64,0x0E,0x71,0x86,0xF1,0xB8};
String chiller_state = "idle";
int tank_setpoint = 28;
WiFiClient net;
ControlDevice DEVICE_LIST[3]; ControlDevice DEVICE_LIST[3];
int TOTAL_DEVICES = 0; int TOTAL_DEVICES = 0;