26 lines
642 B
C++
26 lines
642 B
C++
//
|
|
// Created by camer on 16/05/2020.
|
|
//
|
|
|
|
#ifndef PROJET_VICTORAVECUNK_INTELLIGENTDIGITALACTUATORLED_H
|
|
#define PROJET_VICTORAVECUNK_INTELLIGENTDIGITALACTUATORLED_H
|
|
|
|
#include <iostream>
|
|
#include <thread>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <fstream>
|
|
|
|
|
|
#include "../DigitalDevice.h"
|
|
|
|
class IntelligentDigitalActuatorLED: public DigitalDevice{
|
|
|
|
public:
|
|
// initialisation du temps de rafraichiisement
|
|
IntelligentDigitalActuatorLED(int t);
|
|
// thread representant l'actionneur et permettant de fonctionner independamment de la board
|
|
virtual void run();
|
|
};
|
|
|
|
#endif //PROJET_VICTORAVECUNK_INTELLIGENTDIGITALACTUATORLED_H
|