OMOTE/Platformio/HAL/Interface/wifiHandlerInterface.h
Matthew Colvin cd603a2a83 Update Battery Interface by adding it to hardwareInterface
Remove Display out of some classes and leave comments to replace for callbacks
I dont know about the function of this code but it compiles :)
2023-09-09 21:44:47 -04:00

15 lines
No EOL
436 B
C++

#pragma once
#include <Arduino.h>
#include "DisplayInterface.h"
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 String getIP() = 0;
};