OMOTE/Platformio/HAL/HardwareInterfaces/wifiHandlerInterface.h
Matthew Colvin a771c64c71 rename interface folder to HardwareInterfaces
rename HardwareInterface file to hardware
abstract.

update ini to reflect new file structure
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;
};