esp8266_deauther/esp8266_deauther/wifi.h

21 lines
450 B
C
Raw Normal View History

2021-01-11 18:14:55 +01:00
/* This software is licensed under the MIT License: https://github.com/spacehuhntech/esp8266_deauther */
2020-07-14 18:07:42 +02:00
#pragma once
2020-07-14 18:07:42 +02:00
#include <Arduino.h>
2020-07-14 18:07:42 +02:00
namespace wifi {
void begin();
2020-07-14 18:07:42 +02:00
String getMode();
void printStatus();
2021-01-11 18:14:55 +01:00
2020-07-14 18:07:42 +02:00
void startNewAP(String path, String ssid, String password, uint8_t ch, bool hidden, bool captivePortal);
2021-01-11 18:14:55 +01:00
// void startAP(String path);
2020-07-14 18:07:42 +02:00
void startAP();
2020-07-14 18:07:42 +02:00
void stopAP();
void resumeAP();
2021-01-11 18:14:55 +01:00
2020-07-14 18:07:42 +02:00
void update();
}