Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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