Skip to content

Commit

Permalink
Add support for the SHT85
Browse files Browse the repository at this point in the history
Thanks to FStefanni for pointing this out
  • Loading branch information
winkj committed Oct 5, 2021
1 parent 285d982 commit 90acf9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions SHTSensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ bool SHTSensor::init(TwoWire & wire)

switch(mSensorType) {
case SHT3X:
case SHT85:
mSensor = new SHT3xSensor(wire);
break;

Expand Down
1 change: 1 addition & 0 deletions SHTSensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class SHTSensor
// i2c Sensors:
/** SHT3x-DIS with ADDR (sensor pin 2) connected to VSS (default) */
SHT3X,
SHT85,
/** SHT3x-DIS with ADDR (sensor pin 2) connected to VDD */
SHT3X_ALT,
SHTC1,
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version=1.2.0
author=Johannes Winkelmann, Andreas Brauchli
maintainer=Johannes Winkelmann <jwi@sensirion.com>
sentence=Support for Sensirion's humidity and temperature sensors.
paragraph=Supported sensors: SHTC1, SHTC3, SHTW1, SHTW2, SHT3x-DIS (I2C), SHT3x-ARP, SHT4x
paragraph=Supported sensors: SHTC1, SHTC3, SHTW1, SHTW2, SHT3x-DIS (I2C), SHT85, SHT3x-ARP, SHT4x
category=Sensors
url=https://developer.sensirion.com
architectures=*

0 comments on commit 90acf9d

Please sign in to comment.