mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-03 11:26:29 +02:00
20 lines
309 B
C
20 lines
309 B
C
![]() |
#ifndef _AG_WIFI_CONNECTOR_H_
|
||
|
#define _AG_WIFI_CONNECTOR_H_
|
||
|
|
||
|
#include "AirGradient.h"
|
||
|
#include "AgOledDisplay.h"
|
||
|
|
||
|
class AgWiFiConnector
|
||
|
{
|
||
|
private:
|
||
|
AirGradient &ag;
|
||
|
public:
|
||
|
AgWiFiConnector(AirGradient& ag, AgOledDisplay &disp, String ssid);
|
||
|
~AgWiFiConnector();
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif /** _AG_WIFI_CONNECTOR_H_ */
|