File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 38
38
39
39
#ifdef ARDUINO_ARCH_ESP32
40
40
41
+ /*
42
+ * \brief Adafruit Feather-Specific Definitions
43
+ *
44
+ * The Adafruit feather specification defines standard pinout names for digital
45
+ * and analog pins. Unfortunately, the Adafruit Huzzah32 does not comply with
46
+ * this specification. As such, we provide mappings for the pins that are
47
+ * technically incorrect but which make it easier to write code that works
48
+ * across different feathers.
49
+ *
50
+ * On the ESP32 for instance, the pinout for Digital Pin 14 is located where
51
+ * D5 is usually located, so our symbol maps D5 to Digital Pin 14 on that
52
+ * board, etc...
53
+ *
54
+ * \see https://learn.adafruit.com/adafruit-feather/feather-specification
55
+ */
56
+
41
57
#ifdef B0
42
58
#undef B0
43
59
#endif
You can’t perform that action at this time.
0 commit comments