We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c070961 commit 784ba99Copy full SHA for 784ba99
variants/thingpulse_epulse_feather/pins_arduino.h
@@ -3,12 +3,17 @@
3
4
#include <stdint.h>
5
6
+static const uint8_t LED_BUILTIN = -1;
7
+#define BUILTIN_LED LED_BUILTIN // backward compatibility
8
+#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
9
+
10
static const uint8_t SDA = 23;
11
static const uint8_t SCL = 22;
12
13
static const uint8_t MOSI = 18;
14
static const uint8_t MISO = 19;
15
static const uint8_t SCK = 5;
16
+static const uint8_t SS = -1;
17
18
// mapping to match other feathers and also in order
19
static const uint8_t A0 = 26;
0 commit comments