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:
39:aa5f95061409
Parent:
38:a0753c2a4497
Child:
42:03cbc2a6f63b
--- a/temp_controller/temp_controller.h	Tue Sep 18 20:49:05 2018 +0000
+++ b/temp_controller/temp_controller.h	Fri Sep 21 17:56:25 2018 +0000
@@ -14,6 +14,7 @@
 
 void start_temp();                      // start temp conversion
 void check_temp();                      // check temp sensor state and read temp
+void process_temp();                    // process heating algorithm
 unsigned int get_temp_config_value();   // get config value from EEPROM 
-
+void save_new_config();                 // save new config to EEPROM
 #endif
\ No newline at end of file