13 lines
No EOL
156 B
C++
13 lines
No EOL
156 B
C++
#ifndef led_H
|
|
#define led_H
|
|
#include "actionneur.h"
|
|
|
|
class led : public actionneur{
|
|
private:
|
|
char* pin;
|
|
bool etat;
|
|
public:
|
|
led();
|
|
};
|
|
|
|
#endif |