21 lines
356 B
C
21 lines
356 B
C
/*
|
|
* 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 init_wifi_sta();
|
|
|
|
#endif /* COMPONENTS_WIFI_WIFI_H_ */
|