1
0
Weather_ESP/components/wifi/wifi.h

21 lines
356 B
C
Raw Normal View History

/*
* wifi.h
*
* Created on: 21 Apr 2020
* Author: Chris
*/
#ifndef COMPONENTS_WIFI_WIFI_H_
#define COMPONENTS_WIFI_WIFI_H_
#include <esp_wifi.h>
#include <esp_log.h>
#include <freertos/FreeRTOS.h>
#include "freertos/event_groups.h"
#include <freertos/task.h>
#include "nvs_flash.h"
void wifi_init_sta();
#endif /* COMPONENTS_WIFI_WIFI_H_ */