fixed values - at cccamp23 it came out thtat 10-12°C is the useful minimum

This commit is contained in:
Marcus (DeltaLima) 2023-08-29 23:57:13 +02:00
parent 1c57b5cd04
commit 23895455bd
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
# arduino-fridge-powercontrol # arduino-fridge-powercontrol
A small project to turn my 12V cooling boxes aka mini-fridge on or off depending on their temperature inside. A small project to turn my 12V cooling boxes aka mini-fridge on or off depending on their temperature inside.
Over the USB serial the arduino sends every 5 seconds the temperature and Status (on/off) in json format.
Used at the #cccamp23 :)

View File

@ -30,10 +30,10 @@ float tempSensor1;
float tempSensor2; float tempSensor2;
// HighTemp - when to turn on the power // HighTemp - when to turn on the power
float HTemp1 = 12.0; float HTemp1 = 12.0;
float HTemp2 = 16.0; float HTemp2 = 12.0;
// LowTemp - when to turn of the power // LowTemp - when to turn of the power
float LTemp1 = 10.0; float LTemp1 = 10.0;
float LTemp2 = 14.0; float LTemp2 = 10.0;
bool fetState1; bool fetState1;
bool fetState2; bool fetState2;