Repo for ESP32 Weather Station Development
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

21 líneas
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_ */