34 lines
371 B
C++
34 lines
371 B
C++
#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
|