STM32F103C8T6_WIFI_Heating_system

Dependencies:   mbed mbed-STM32F103C8T6 eeprom_flash Watchdog PinDetect DS1820

  1. Bluepill STM32F103C8T6 Heating system
    1. _This project is core part of bigger heating system project!_

Features - Reading temperature from four DS18B20 sensors - Making a decision about switching on/off heater and pomp - Executing simple user commands from UART - Storing state parameters to program memory (EEPROM emulation)

Revision:
53:b9620bb0608e
Parent:
51:881a30217532
Child:
54:61ccc1036944
--- a/main.cpp	Sat Sep 29 06:53:19 2018 +0000
+++ b/main.cpp	Sat Sep 29 07:43:40 2018 +0000
@@ -194,8 +194,8 @@
     
     queue.call( start_temp );
     queue.call_every(100, at_command);
-    queue.call_every(2000, check_temp);
-    queue.call_every(500, process_temp);
+    queue.call_every(1000, check_temp);
+    queue.call_every(1000, process_temp);
     
     // Start queue 
     queue.dispatch();