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 cc1d639 commit 1862e53Copy full SHA for 1862e53
variants/esp32s3_powerfeather/pins_arduino.h
@@ -9,6 +9,14 @@
9
#define USB_PRODUCT "ESP32-S3 PowerFeather"
10
#define USB_SERIAL ""
11
12
+#define NUM_DIGITAL_PINS 48
13
+#define EXTERNAL_NUM_INTERRUPTS NUM_DIGITAL_PINS
14
+#define NUM_ANALOG_INPUTS 20
15
+
16
+#define analogInputToDigitalPin(p) (((p)<NUM_ANALOG_INPUTS)?(analogChannelToDigitalPin(p)):-1)
17
+#define digitalPinToInterrupt(p) (((p)<=NUM_DIGITAL_PINS)?(p):-1)
18
+#define digitalPinHasPWM(p) (p<=NUM_DIGITAL_PINS)
19
20
static const uint8_t ALARM = 21;
21
static const uint8_t INT = 5;
22
0 commit comments