23 lines
495 B
C++
23 lines
495 B
C++
//
|
|
// Created by camer on 16/05/2020.
|
|
//
|
|
|
|
#ifndef PROJET_VICTORAVECUNK_ANALOGSENSORMANOMETRE_H
|
|
#define PROJET_VICTORAVECUNK_ANALOGSENSORMANOMETRE_H
|
|
//#include <iostream>
|
|
//#include <thread>
|
|
//#include <unistd.h>
|
|
//#include <string.h>
|
|
//#include <fstream>
|
|
#include "../AnalogDevice.h"
|
|
|
|
class AnalogSensorManometre : public AnalogSensor{
|
|
private:
|
|
int alea;
|
|
public:
|
|
AnalogSensorManometre(float val, int t); //
|
|
virtual void run();
|
|
};
|
|
|
|
|
|
#endif //PROJET_VICTORAVECUNK_ANALOGSENSORMANOMETRE_H
|