initial version

This commit is contained in:
2016-07-15 15:00:49 +02:00
parent 888b4f8cc5
commit 43148f4d54
19 changed files with 837 additions and 0 deletions

View 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