leds.h 370 B

1234567891011121314151617181920
  1. #ifndef LEDS_MODULE
  2. #define LEDS_MODULE
  3. #import <Arduino.h>
  4. #include "definitions.h"
  5. struct LedsStruct
  6. {
  7. // CONST_PIN_TYPE Unused = 1;
  8. CONST_PIN_TYPE SensorLeft = 18;
  9. CONST_PIN_TYPE SensorRight = 19;
  10. //CONST_PIN_TYPE Solenoid = 9;
  11. // CONST_PIN_TYPE ActuatorPush = 10;
  12. // CONST_PIN_TYPE ActuatorPull = 11;
  13. } Leds;
  14. #endif