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/arduino/include/theWifi.h

24 lines
463 B
C
Raw Normal View History

2022-04-10 14:38:03 +02:00
#ifndef THEWIFI_H
#define THEWIFI_H
#include "esp32-hal-log.h"
#include "WiFi.h"
#include "theSecrets.h"
2022-04-10 15:55:42 +02:00
const char *esp_ip_address;
2022-04-10 14:38:03 +02:00
2022-04-10 15:55:42 +02:00
void setup_wifi()
2022-04-10 14:38:03 +02:00
{
log_i("Attempting to connect to WPA SSID: %s", ssid);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, psk);
while (WiFi.status() != WL_CONNECTED)
{
delay(1000);
}
2022-04-10 15:55:42 +02:00
esp_ip_address = WiFi.localIP().toString().c_str();
log_i("Connected, IP Address: %s", esp_ip_address);
2022-04-10 14:38:03 +02:00
}
2022-04-10 15:55:42 +02:00
#endif