initial version
This commit is contained in:
33
sensors/linux/WiFiSensorLinux.h
Normal file
33
sensors/linux/WiFiSensorLinux.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef WIFISENSORLINUX_H
|
||||
#define WIFISENSORLINUX_H
|
||||
|
||||
#include "../WiFiSensor.h"
|
||||
|
||||
class WiFiSensorLinux : public WiFiSensor {
|
||||
|
||||
|
||||
private:
|
||||
|
||||
WiFiSensorLinux() {
|
||||
|
||||
}
|
||||
|
||||
public:
|
||||
|
||||
/** singleton access */
|
||||
static WiFiSensorLinux& get() {
|
||||
static WiFiSensorLinux wifi;
|
||||
return wifi;
|
||||
}
|
||||
|
||||
void start() override {
|
||||
|
||||
}
|
||||
|
||||
void stop() override {
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif // WIFISENSORLINUX_H
|
||||
Reference in New Issue
Block a user