-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
Update of Boards.txt & variants - Adding CYObot board - 3rd party board #10947
Open
mhpham23
wants to merge
6
commits into
espressif:master
Choose a base branch
from
mhpham23:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+318
−0
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
38d1fa0
Adding CYObot board - 3rd party board
mhpham23 0298d67
feat(cyobot): adding cyobot_v2_esp32s3 board
mhpham23 5dab61d
fix(cyobot_v2_esp32s3): fix variant name
mhpham23 cbd0f16
Merge branch 'master' into master
mhpham23 1249195
fix(boards.txt): fix name of CYOBot board
mhpham23 9449af0
Merge branch 'master' of https://github.com/mhpham23/arduino-esp32
mhpham23 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
|
||
#define USB_MANUFACTURER "CYObot" | ||
#define USB_PRODUCT "CYObrain ESP32S3" | ||
#define USB_SERIAL "" // Empty string for MAC address | ||
|
||
/* Welcome to CYObot! - Pin header file is for CYObrain_v2_esp32s3 */ | ||
// Last Updated: 02/06/2025 - by Phamm | ||
|
||
static const uint8_t BUTTON0 = 4; | ||
static const uint8_t BUTTON1 = 38; | ||
static const uint8_t LED = 24; | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please format the pins_arduino.h file to remove unnecessary comments and empty lines. Thanks |
||
|
||
|
||
static const uint8_t BAT_MEAS = 6; | ||
static const uint8_t CHAR_DET = 23; | ||
|
||
static const uint8_t NEO_BASE = 7; | ||
static const uint8_t NEO_BRAIN = 15; | ||
|
||
static const uint8_t I2S0_MCLK = 16; | ||
static const uint8_t I2S0_DSDIN = 8; | ||
static const uint8_t I2S0_SCLK = 9; | ||
static const uint8_t I2S0_LRCK = 45; | ||
|
||
/* static const uint8_t I2C_SDA = 17 - Naming convention */ | ||
static const uint8_t SDA = 17; | ||
/* static const uint8_t I2C_SCL = 18 - Naming convention */ | ||
static const uint8_t SCL = 18; | ||
|
||
/* Naming convention changes | ||
static const uint8_t SPI_CS = 5; | ||
static const uint8_t SPI_SCK = 41; | ||
static const uint8_t SPI_MISO = 42; | ||
static const uint8_t SPI_MOSI = 2; */ | ||
|
||
static const uint8_t SS = 5; | ||
static const uint8_t MOSI = 2; | ||
static const uint8_t MISO = 42; | ||
static const uint8_t SCK = 41; | ||
|
||
static const uint8_t ENCODER1_A = 39; | ||
static const uint8_t ENCODER1_B = 40; | ||
static const uint8_t ENCODER2_B = 19; | ||
static const uint8_t ENCODER2_A = 20; | ||
|
||
static const uint8_t UART1_RXD = 3; | ||
static const uint8_t UART1_TXD = 1; | ||
|
||
static const uint8_t GPIO46 = 46; | ||
static const uint8_t ESP_IO0 = 0; | ||
|
||
static const uint8_t SD_OUT = 10; | ||
static const uint8_t SD_SPI_MOSI = 11; | ||
static const uint8_t SD_SPI_CLK = 12; | ||
static const uint8_t SD_SPI_MISO = 13; | ||
static const uint8_t SD_SPI_CS = 14; | ||
|
||
static const uint8_t PA_CTRL = 25; | ||
|
||
|
||
#endif /* Pins_Arduino_h */ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the zigbee line to newest version of the libs