Repo for ESP32 Weather Station Development
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
682B

  1. /*
  2. * display.h
  3. *
  4. * Created on: 19 Apr 2020
  5. * Author: Chris
  6. */
  7. #ifndef COMPONENTS_DISPLAY_DISPLAY_H_
  8. #define COMPONENTS_DISPLAY_DISPLAY_H_
  9. #include <freertos/FreeRTOS.h>
  10. #include <freertos/task.h>
  11. #include <esp_log.h>
  12. #include <esp_err.h>
  13. #include "clock.h"
  14. esp_err_t init_display();
  15. void display_data(int32_t temp_raw, uint32_t pressure_raw, uint32_t humidity_raw,
  16. int32_t temp2_raw, uint32_t pressure2_raw, uint32_t humidity2_raw,
  17. time_str_t time);
  18. void update_data(int32_t temp_raw, uint32_t pressure_raw, uint32_t humidity_raw,
  19. int32_t temp2_raw, uint32_t pressure2_raw, uint32_t humidity2_raw,
  20. time_str_t time);
  21. #endif /* COMPONENTS_DISPLAY_DISPLAY_H_ */