-
Notifications
You must be signed in to change notification settings - Fork 7.4k
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 ESP32 TinyS3 (IDFGH-13594) #14481
Conversation
In ESP32TinyS3 LED is powered by pin IO17 and controlled by IO18.
👋 Hello zoonman, we appreciate your contribution to this project! 📘 Please review the project's Contributions Guide for key guidelines on code, documentation, testing, and more. 🖊️ Please also make sure you have read and signed the Contributor License Agreement for this project. Click to see more instructions ...
Review and merge process you can expect ...
|
@zoonman Thanks for your contribution to esp-idf. It's nice to see a 🆕 ESP32-S3 board.
This looks dangerous, as usual, we don't recommend connecting a GPIO to a device's VDD, becuase GPIO has limited current output ability.
Unfortunately, this is a common "issue" for esp-idf examples, that it can't work out of the box on many boards, because it doesn't have the idea of "what board is running with". "Set the GPIO17" may benefit for your board, but may cause problem for other boards. Since this is a famous board, I would suggest making a BSP package for it. You can find many existing BSP packages here. |
Hi @suda-morris . I think making BSP package is slightly above my commitment plan. I think it would be worth for @UnexpectedMaker to look into something like that. |
I am closing this one. I hope @UnexpectedMaker will look into BSP package option. I honestly don't have time for that. @suda-morris thank you for replying and explanation. I truly appreciate that. |
In ESP32 TinyS3 LED is powered by pin IO17 and controlled by IO18.
Current example doesn't work out of the box for those boards because IO17 is low. We need to supply power in order to control WS2812B.
See schematic https://github.com/UnexpectedMaker/esp32s3/blob/main/schematics/schematic-tinys3.pdf
This board is very popular amongst beginners and proposed change will significantly ease learning curve.