Files
DeautherX-SRAciJa/DeautherX/wifi.h
2025-12-02 18:52:45 +03:00

29 lines
625 B
C++

/* This software is licensed under the MIT License: https://github.com/BlackTechX011/DeautherX */
#pragma once
#include <Arduino.h>
#include <dhcpserver.h>
#include <lwip/napt.h>
#include <lwip/dns.h>
namespace wifi {
void begin();
String getMode();
String getNaptStatus();
void printStatus();
void initNapt();
void startNewAP(String path, String ssid, String password, uint8_t ch, bool hidden, bool captivePortal);
void startEvilTwin(String apn);
// void startAP(String path);
void startWebServer();
void startAP();
void stopAP();
void resumeAP();
void update();
}