/* This software is licensed under the MIT License: https://github.com/spacehuhntech/esp8266_deauther */ #pragma once #include namespace wifi { void begin(); String getMode(); void printStatus(); void startNewAP(String path, String ssid, String password, uint8_t ch, bool hidden, bool captivePortal); // void startAP(String path); void startAP(); void stopAP(); void resumeAP(); void update(); }