Testeur.h 281 B

12345678910111213141516171819202122
  1. #ifndef __TESTEUR_H__
  2. #define __TESTEUR_H__
  3. #include <stdint.h>
  4. #define MINUTE (long)75
  5. #define DELAYLOOP (long)500
  6. #define NBPIN 11
  7. typedef struct {
  8. uint8_t num;
  9. uint8_t last;
  10. }newPin;
  11. uint8_t tab[MAXEEPROM];
  12. void initTabPin(void);
  13. uint8_t toogle(uint8_t pin);
  14. #endif