-
Notifications
You must be signed in to change notification settings - Fork 12
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
Support for ESP32-S3 #56
Comments
You might want to share a link to the esp32 you bought and I will add this to the instructions. I can also add another environment to the platformio.ini. Thanks for leaving this comment 👍 |
the exact part is this one https://www.aliexpress.com/item/1005007291319086.html on the pcb it states waveshare esp32-s3-nano |
Hello @xtrmenl , |
I managed to use this board, but with some changes. [env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
board_build.mcu = esp32s3
framework = arduino
build_flags =
-std=c++11
-DARDUINO_USB_CDC_ON_BOOT=1
-DARDUINO_USB_DFU_ON_BOOT=1
#upload_protocol = espota
#upload_port = 192.168.188.62
lib_deps =
locoduino/[email protected]
FrankBoesing/[email protected]
PaulStoffregen/[email protected]
256dpi/[email protected]
adafruit/Adafruit [email protected]
adafruit/[email protected]
[email protected]
[email protected]
https://github.com/denyssene/SimpleKalmanFilter.git#v0.2
[email protected] Then, I have to change pins definition into constexpr uint8_t GPIO_MAIN_RX = 5;
constexpr uint8_t GPIO_MAIN_TX = 6;
constexpr uint8_t GPIO_HMI_RX = 7;
constexpr uint8_t GPIO_HMI_TX = 8; |
i just got this working on a Cheap ESP32-S3 nano (8MB version), which is pin compatible, but less then half the price of the arduino
[env:esp32-s3-devkitc-1] platform = espressif32 board = esp32-s3-devkitc-1 board_build.mcu = esp32s3 framework = arduino build_flags = -std=c++11 lib_deps = locoduino/[email protected] FrankBoesing/[email protected] PaulStoffregen/[email protected] 256dpi/[email protected] adafruit/Adafruit [email protected] adafruit/[email protected] [email protected] [email protected] https://github.com/denyssene/SimpleKalmanFilter.git#v0.2 [email protected]
to be added to the Platformio
The text was updated successfully, but these errors were encountered: