#pragma once #define HIBERNATE_DELAY 5000 #define SENSORS_CHECK_INTERVAL 2000 #define SENSORS_REQUEST_DELAY 750 #define TEMP_TRIGGER ((temp_t)(5 * 10.0f)) #define TEMP_INTERVAL ((temp_t)(0.5 * 10.0f)) #define LCD_CHAR_SENSOR 1 #define PIN_ONEWIRE 14 //A0 #define PIN_RELAY2 15 //A1 #define PIN_RELAY1 16 //A2 #define PIN_BTN_CANCEL 9 #define PIN_BTN_OK 10 #define PIN_BTN_MINUS 11 #define PIN_BTN_PLUS 12 #define PIN_LCD_LED 2 #define PIN_LCD_RS 8 #define PIN_LCD_ENABLE 7 #define PIN_LCD_D4 6 #define PIN_LCD_D5 5 #define PIN_LCD_D6 4 #define PIN_LCD_D7 3