update adafruit boards for 2.0 (#5718)

This commit is contained in:
Ha Thach
2021-10-01 20:14:50 +07:00
committed by GitHub
parent 1688b7c179
commit 6de7f16f28
13 changed files with 107 additions and 59 deletions

View File

@ -4,12 +4,11 @@
#include <stdint.h>
#define USB_VID 0x239A
#define USB_PID 0x80F9
#define USB_MANUFACTURER "Adafruit"
#define USB_PRODUCT "Adafruit Funhouse ESP32-S2"
#define USB_SERIAL ""
#define USB_VID 0x239A
#define USB_PID 0x80F9
#define USB_MANUFACTURER "Adafruit"
#define USB_PRODUCT "Funhouse ESP32-S2"
#define USB_SERIAL "" // Empty string for MAC adddress
#define EXTERNAL_NUM_INTERRUPTS 46
@ -20,24 +19,27 @@
#define digitalPinToInterrupt(p) (((p)<48)?(p):-1)
#define digitalPinHasPWM(p) (p < 46)
#define LED_BUILTIN 37
#define PIN_BUTTON1 3
#define PIN_BUTTON2 4
#define PIN_BUTTON3 5
#define PIN_BUTTON4 0 // BOOT0 switch
static const uint8_t PIN_DOTSTAR_DATA = 14;
static const uint8_t PIN_DOTSTAR_CLOCK = 15;
static const uint8_t LED_BUILTIN = 37;
static const uint8_t TX = 2;
static const uint8_t RX = 3;
static const uint8_t TFT_BACKLIGHT = 21;
static const uint8_t TFT_DC = 39;
static const uint8_t TFT_CS = 40;
static const uint8_t TFT_RESET = 41;
static const uint8_t TFT_BACKLIGHT = 21;
static const uint8_t TFT_DC = 39;
static const uint8_t TFT_CS = 40;
static const uint8_t TFT_RESET = 41;
static const uint8_t SPEAKER = 42;
static const uint8_t BUTTON_DOWN = 3;
static const uint8_t BUTTON_SELECT = 4;
static const uint8_t BUTTON_UP = 5;
static const uint8_t SENSOR_PIR = 16;
static const uint8_t SENSOR_LIGHT = 18;
static const uint8_t SPEAKER = 42;
static const uint8_t BUTTON_DOWN = PIN_BUTTON1;
static const uint8_t BUTTON_SELECT = PIN_BUTTON2;
static const uint8_t BUTTON_UP = PIN_BUTTON3;
static const uint8_t SENSOR_PIR = 16;
static const uint8_t SENSOR_LIGHT = 18;
static const uint8_t SDA = 34;
static const uint8_t SCL = 33;
@ -49,9 +51,16 @@ static const uint8_t MISO = 37;
static const uint8_t A0 = 17;
static const uint8_t A1 = 2;
static const uint8_t A2 = 3;
static const uint8_t A2 = 1;
static const uint8_t A3 = 18; // light sensor
static const uint8_t TX = 43;
static const uint8_t RX = 44;
static const uint8_t T1 = 1;
static const uint8_t T2 = 2;
static const uint8_t T3 = 3;