23 lines
457 B
C++
23 lines
457 B
C++
//
|
|
// Created by camer on 16/05/2020.
|
|
//
|
|
|
|
#ifndef PROJET_VICTORAVECUNK_ANALOGSENSORLUMINOSITY_H
|
|
#define PROJET_VICTORAVECUNK_ANALOGSENSORLUMINOSITY_H
|
|
|
|
#include <iostream>
|
|
#include <thread>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <fstream>
|
|
#include "../AnalogDevice.h"
|
|
|
|
class AnalogSensorLuminosity: public AnalogDevice{
|
|
|
|
public:
|
|
AnalogSensorLuminosity(int t);
|
|
virtual void run();
|
|
};
|
|
|
|
|
|
#endif //PROJET_VICTORAVECUNK_ANALOGSENSORLUMINOSITY_H
|