mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-28 15:12:19 +03:00
16 lines
268 B
C
16 lines
268 B
C
|
|
#pragma once
|
||
|
|
#include "Global.h"
|
||
|
|
#include "Classes/IoTSensor.h"
|
||
|
|
|
||
|
|
class IoTSensorA : public IoTSensor {
|
||
|
|
public:
|
||
|
|
IoTSensorA(String parameters);
|
||
|
|
~IoTSensorA();
|
||
|
|
|
||
|
|
void doByInterval();
|
||
|
|
|
||
|
|
private:
|
||
|
|
unsigned int _pin;
|
||
|
|
};
|
||
|
|
|
||
|
|
extern IoTSensorA* mySensorAnalog;
|