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.

27 lines
584B

  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 "esp32_ucglib_hal.h"
  14. //#include "ucg.h"
  15. esp_err_t init_display();
  16. void display_data(int32_t temp_raw, uint32_t pressure_raw, uint32_t humidity_raw,
  17. int32_t temp2_raw, uint32_t pressure2_raw, uint32_t humidity2_raw);
  18. //void update_temp1(int32_t temp1);
  19. void test_tft_lib();
  20. #endif /* COMPONENTS_DISPLAY_DISPLAY_H_ */