Skip to content

feat(board): add Waveshare ESP32-S3-Matrix #10072

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci(pre-commit): Apply automatic fixes
  • Loading branch information
pre-commit-ci-lite[bot] authored Jul 25, 2024
commit 70b263d518c955aee6d3d50fd0fafdabad7c0315
1 change: 0 additions & 1 deletion variants/ws_esp32_s3_matrix/partitions_all_app_4MB.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
factory, app, factory, 0x10000, 0x3F0000,

20 changes: 10 additions & 10 deletions variants/ws_esp32_s3_matrix/pins_arduino.h
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
#define USB_SERIAL ""

// Onboard 8 x 8 Matrix panel
#define WS_MATRIX_DIN 14
#define WS_MATRIX_DIN 14

// Onboard QMI8658 IMU
#define WS_IMU_SDA 11
#define WS_IMU_SCL 12
#define WS_IMU_ADDRESS 0x6B
#define WS_IMU_INT1 10
#define WS_IMU_INT2 13
#define WS_IMU_SDA 11
#define WS_IMU_SCL 12
#define WS_IMU_ADDRESS 0x6B
#define WS_IMU_INT1 10
#define WS_IMU_INT2 13

// UART0 pins
static const uint8_t TX = 43;
Expand All @@ -32,10 +32,10 @@ static const uint8_t SDA = 11;
static const uint8_t SCL = 12;

// Mapping based on the ESP32S3 data sheet - alternate for SPI2
static const uint8_t SS = 34; // FSPICS0
static const uint8_t MOSI = 35; // FSPID
static const uint8_t MISO = 37; // FSPIQ
static const uint8_t SCK = 36; // FSPICLK
static const uint8_t SS = 34; // FSPICS0
static const uint8_t MOSI = 35; // FSPID
static const uint8_t MISO = 37; // FSPIQ
static const uint8_t SCK = 36; // FSPICLK

// Analog capable pins on the header
static const uint8_t A0 = 1;
Expand Down