|
| 1 | +#ifndef Pins_Arduino_h |
| 2 | +#define Pins_Arduino_h |
| 3 | + |
| 4 | +#include <stdint.h> |
| 5 | + |
| 6 | +#define USB_VID 0x16D0 |
| 7 | +#define USB_PID 0x1178 |
| 8 | + |
| 9 | +#define EXTERNAL_NUM_INTERRUPTS 46 |
| 10 | +#define NUM_DIGITAL_PINS 48 |
| 11 | +#define NUM_ANALOG_INPUTS 20 |
| 12 | + |
| 13 | +#define analogInputToDigitalPin(p) (((p)<20)?(analogChannelToDigitalPin(p)):-1) |
| 14 | +#define digitalPinToInterrupt(p) (((p)<48)?(p):-1) |
| 15 | +#define digitalPinHasPWM(p) (p < 46) |
| 16 | + |
| 17 | +#define LED_BUILTIN 13 |
| 18 | +#define BUILTIN_LED LED_BUILTIN // backward compatibility |
| 19 | + |
| 20 | +static const uint8_t TX = 43; |
| 21 | +static const uint8_t RX = 44; |
| 22 | + |
| 23 | +static const uint8_t SDA = 3; |
| 24 | +static const uint8_t SCL = 4; |
| 25 | + |
| 26 | +static const uint8_t SS = 13; |
| 27 | +static const uint8_t MOSI = 40; |
| 28 | +static const uint8_t MISO = 41; |
| 29 | +static const uint8_t SCK = 39; |
| 30 | + |
| 31 | +static const uint8_t A0 = 1; |
| 32 | +static const uint8_t A1 = 2; |
| 33 | +static const uint8_t A2 = 8; |
| 34 | +static const uint8_t A3 = 9; |
| 35 | +static const uint8_t A4 = 5; |
| 36 | +static const uint8_t A5 = 6; |
| 37 | +static const uint8_t A6 = 14; |
| 38 | +static const uint8_t A7 = 7; |
| 39 | +static const uint8_t A8 = 15; |
| 40 | +static const uint8_t A9 = 33; |
| 41 | +static const uint8_t A10 = 27; |
| 42 | +static const uint8_t A11 = 12; |
| 43 | +static const uint8_t A12 = 13; |
| 44 | +static const uint8_t A13 = 14; |
| 45 | +static const uint8_t A14 = 15; |
| 46 | +static const uint8_t A15 = 16; |
| 47 | +static const uint8_t A16 = 17; |
| 48 | +static const uint8_t A17 = 18; |
| 49 | +static const uint8_t A18 = 19; |
| 50 | +static const uint8_t A19 = 20; |
| 51 | + |
| 52 | +static const uint8_t T1 = 2; |
| 53 | +static const uint8_t T2 = 8; |
| 54 | +static const uint8_t T3 = 9; |
| 55 | +static const uint8_t T4 = 5; |
| 56 | +static const uint8_t T5 = 6; |
| 57 | +static const uint8_t T6 = 14; |
| 58 | +static const uint8_t T7 = 7; |
| 59 | +static const uint8_t T8 = 15; |
| 60 | +static const uint8_t T9 = 33; |
| 61 | +static const uint8_t T10 = 27; |
| 62 | +static const uint8_t T11 = 12; |
| 63 | +static const uint8_t T12 = 13; |
| 64 | +static const uint8_t T13 = 14; |
| 65 | +static const uint8_t T14 = 15; |
| 66 | + |
| 67 | +#endif /* Pins_Arduino_h */ |
0 commit comments