Repo for ESP32 Weather Station Development
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
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_ */