This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
esp-firewall/SourceCode/esp-idf/include/network/theWifi.h
2022-04-10 13:26:52 +02:00

26 lines
457 B
C

#ifndef WIFI_H
#define WIFI_H
#include "string.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/event_groups.h"
#include "esp_system.h"
#include "esp_wifi.h"
#include "esp_event.h"
#include "esp_log.h"
#include "lwip/err.h"
#include "lwip/sys.h"
#include "secrets.h"
#define ESP_WIFI_SSID SSID
#define ESP_WIFI_PASS PSK
#define WIFI_CONNECTED_BIT BIT0
#define WIFI_FAIL_BIT BIT1
void setup_wifi(char *serverIp);
#endif