Repo for ESP32 Weather Station Development
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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