Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrouch committed Dec 12, 2024
1 parent 9e1c021 commit 1c505cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion i2c_qmp6988.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define QMP6988_SLAVE_ADDRESS_L (0x70)
#define QMP6988_SLAVE_ADDRESS_H (0x56)

m5::unit::UnitQMP6988 i2c_qmp6988_sensor;
m5::unit::UnitQMP6988 i2c_qmp6988_sensor(QMP6988_SLAVE_ADDRESS_L);
bool i2c_qmp6988_found = false;

void i2c_qmp6988_report() {
Expand Down
2 changes: 1 addition & 1 deletion i2c_sht30.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#define SHT3X_I2C_ADDR 0x44

m5::unit::UnitSHT30 i2c_sht30_sensor;
m5::unit::UnitSHT30 i2c_sht30_sensor(SHT3X_I2C_ADDR);
bool i2c_sht30_found = false;

void i2c_sht30_report() {
Expand Down

0 comments on commit 1c505cd

Please sign in to comment.