OMOTE/Platformio/HAL/HardwareInterfaces/wifiHandlerInterface.h
Matthew Colvin 1bbafd4bb5 update wifi interface and handler
add the wifi interface to the hardware abstract
2023-09-09 21:44:47 -04:00

14 lines
No EOL
408 B
C++

#pragma once
#include <string>
class wifiHandlerInterface{
public:
virtual void begin() = 0;
virtual void connect(const char* SSID, const char* password) = 0;
virtual void disconnect() = 0;
virtual bool isConnected() = 0;
virtual void turnOff() = 0;
virtual void scan() = 0;
virtual char* getSSID() = 0;
virtual std::string getIP() = 0;
};