Repo for ESP32 Weather Station Development
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

21 wiersze
356B

  1. /*
  2. * wifi.h
  3. *
  4. * Created on: 21 Apr 2020
  5. * Author: Chris
  6. */
  7. #ifndef COMPONENTS_WIFI_WIFI_H_
  8. #define COMPONENTS_WIFI_WIFI_H_
  9. #include <esp_wifi.h>
  10. #include <esp_log.h>
  11. #include <freertos/FreeRTOS.h>
  12. #include "freertos/event_groups.h"
  13. #include <freertos/task.h>
  14. #include "nvs_flash.h"
  15. void init_wifi_sta();
  16. #endif /* COMPONENTS_WIFI_WIFI_H_ */