| 12345678910111213141516171819202122 |
- #ifndef __TESTEUR_H__
- #define __TESTEUR_H__
- #include <stdint.h>
- #define MINUTE (long)75
- #define DELAYLOOP (long)500
- #define NBPIN 11
- typedef struct {
- uint8_t num;
- uint8_t last;
- }newPin;
- uint8_t tab[MAXEEPROM];
- void initTabPin(void);
- uint8_t toogle(uint8_t pin);
- #endif
|