Conversation
Add M5StampS3Mini board support
readRegister8() returns 0 when the I2C transaction fails, and the active-low decoding misinterprets it as all buttons pressed. Check the result of readRegister() instead and leave the buttons released when the read fails. (StampPLC, UnitC6L, Nesso N1) Fixes #262
Add M5IOE1 GPIO and PWM APIs.
Add M5ChainCaptain board support
tweak for PaperMono
Add Paper Mono microphone power support
Add M5PaperDIY board support
- HowToUse: PaperDIY, StampS3Bat / StampS3Mini / StampPLC / AirQ / StackChan / ChainCaptain / DualKey (S3), new C5 section (StampC5 / ToughC5), StampC6 (C6), StampP4 (P4) - Fix nonexistent enum name board_NanoH2 -> board_M5NanoH2 in ESP32H2 section - README: sync supported device lists, add ESP32-C5 section
Update supported board information and require M5GFX >=0.2.26
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request adds support for several new M5Stack boards and improves hardware abstraction, especially for audio and IO expander handling. It also updates dependencies and refactors the code to use the new
M5IOE1_Classfor IO expander operations, providing more robust and maintainable hardware control.New Board Support:
M5STAMPS3S3Bat,M5STAMPS3Mini,M5STAMPPLC,M5PaperDIY,M5AirQ,M5StackChan,M5ChainCaptain,M5DualKey,M5STAMPC5,M5ToughC5,M5STAMPC6,M5STAMPP4,M5UnitPoEP4in both documentation and code, including board detection and initialization logic. [1] [2] [3] [4] [5]Audio and Microphone Handling Improvements:
M5ChainCaptainandM5PaperMono, with correct power sequencing and IO expander usage. [1] [2] [3] [4] [5]IO Expander Refactor:
M5IOE1_Classfor all IO expander operations instead of direct I2C register manipulation, improving maintainability and abstraction. [1] [2] [3] [4]Dependency Updates:
M5GFXdependency to version>=0.2.26and bumped the library version to0.2.19in all relevant files. [1] [2] [3]Documentation:
README.mdto reflect all newly supported boards and features.These changes expand board compatibility, improve hardware abstraction, and ensure the library is up to date with its dependencies.