From 23895455bdf990cfaa833de8e643343c6e226ed2 Mon Sep 17 00:00:00 2001 From: "Marcus (DeltaLima)" Date: Tue, 29 Aug 2023 23:57:13 +0200 Subject: [PATCH] =?UTF-8?q?fixed=20values=20-=20at=20cccamp23=20it=20came?= =?UTF-8?q?=20out=20thtat=2010-12=C2=B0C=20is=20the=20useful=20minimum?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ main/main.ino | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ff0ea95..f0f58cc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # arduino-fridge-powercontrol 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 :) diff --git a/main/main.ino b/main/main.ino index 32e730d..3034601 100644 --- a/main/main.ino +++ b/main/main.ino @@ -30,10 +30,10 @@ float tempSensor1; float tempSensor2; // HighTemp - when to turn on the power float HTemp1 = 12.0; -float HTemp2 = 16.0; +float HTemp2 = 12.0; // LowTemp - when to turn of the power float LTemp1 = 10.0; -float LTemp2 = 14.0; +float LTemp2 = 10.0; bool fetState1; bool fetState2;