1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 14:43:51 +00:00

[tmp1075] fix component for TMP1075N (#8317)

This commit is contained in:
Samuel Sieb
2025-03-02 07:10:18 -08:00
committed by GitHub
parent f11ad9ad5b
commit 23687b2afd
2 changed files with 8 additions and 13 deletions

View File

@@ -36,9 +36,8 @@ struct TMP1075Config {
uint8_t shutdown : 1; // Sets the device in shutdown mode to conserve power.
// 0: Device is in continuous conversion
// 1: Device is in shutdown mode
uint8_t unused : 8;
} fields;
uint16_t regvalue;
uint8_t regvalue;
};
};