Add SHT21 sensor support#9582
Open
Tomas-Kuchta-FPV wants to merge 4 commits intomeshtastic:developfrom
Open
Conversation
fifieldt
reviewed
Feb 10, 2026
|
|
||
| break; | ||
|
|
||
| #if HAS_SHT21 |
Member
There was a problem hiding this comment.
is there a register you can look up on the SHT21 that is unique to that model, or at least able to distinguish it from the other chips that share the address? That way we could detect it and use it without a firmware rebuild.
Contributor
|
Looking at the datasheets, maybe the INA219 calibration register (05h) being all zero at reset would be enough? |
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.
Description
This PR adds support for the SHT21 humidity and temperature sensor to Meshtastic. The SHT21 is a low-cost, low-power environmental sensor that complements the existing SHT3x support.
Changes
Sensor Details
INA_ADDR)-D HAS_SHT21=1compile flagTesting
Notes
The SHT21 shares the I2C address (0x40) with the INA power monitoring chip. Current implementation uses a compile-time flag to select which sensor is used. Future improvements could include runtime detection/probing if both sensors need to be supported simultaneously.
Related: meshtastic/protobufs#855