hardware.h 411 B

1234567891011121314151617181920
  1. // defining the hardware connections
  2. // Arduino Hardware
  3. const byte Din_0 = 0;
  4. const byte Din_1 = 1;
  5. const byte Din_2 = 2;
  6. const byte Din_3 = 3;
  7. const byte Dout_0 = 4;
  8. const byte Dout_1 = 5;
  9. const byte Dout_2 = 6;
  10. const byte Dout_3 = 7;
  11. const byte ADC_0 = 0; //(15)
  12. const byte ADC_1 = 1; //(16)
  13. const byte PWM_1 = 9;
  14. const byte PWM_2 = 10;
  15. const byte SW_PRG = 8;
  16. const byte SW_SEL = 11;