7 static const char *
const TAG =
"tmp1075";
17 static uint16_t temp2regvalue(
float temp);
18 static float regvalue2temp(uint16_t regvalue);
23 ESP_LOGE(TAG,
"'%s' - unable to read", this->
name_.
c_str());
34 ESP_LOGW(TAG,
"'%s' - unable to read temperature register", this->
name_.
c_str());
40 const float temp = regvalue2temp(regvalue);
45 LOG_SENSOR(
"",
"TMP1075 Sensor",
this);
47 ESP_LOGE(TAG,
" Communication with TMP1075 failed!");
54 ESP_LOGCONFIG(TAG,
" fault_count: %d",
config_.
fields.faults);
55 ESP_LOGCONFIG(TAG,
" polarity : %d",
config_.
fields.polarity);
56 ESP_LOGCONFIG(TAG,
" alert_mode : %d",
config_.
fields.alert_mode);
57 ESP_LOGCONFIG(TAG,
" shutdown : %d",
config_.
fields.shutdown);
62 ESP_LOGE(TAG,
"'%s' - fault_count too low: %d", this->
name_.
c_str(), faults);
66 ESP_LOGE(TAG,
"'%s' - fault_count too high: %d", this->
name_.
c_str(), faults);
91 ESP_LOGW(TAG,
"'%s' - unable to write configuration register", this->
name_.
c_str());
100 ESP_LOGW(TAG,
"'%s' - unable to write low limit register", this->
name_.
c_str());
109 ESP_LOGW(TAG,
"'%s' - unable to write high limit register", this->
name_.
c_str());
114 static uint16_t temp2regvalue(
const float temp) {
115 const uint16_t regvalue = temp / 0.0625f;
116 return regvalue << 4;
119 static float regvalue2temp(
const uint16_t regvalue) {
120 const int16_t signed_value = regvalue;
121 return (signed_value >> 4) * 0.0625f;
bool read_byte(uint8_t a_register, uint8_t *data, bool stop=true)
bool read_byte_16(uint8_t a_register, uint16_t *data)
void status_set_warning(const char *message="unspecified")
struct esphome::tmp1075::TMP1075Config::@145::@147 fields
constexpr uint8_t REG_LLIM
void send_alert_limit_high_()
constexpr uint8_t REG_TEMP
constexpr uint8_t REG_DIEID
void set_fault_count(int faults)
constexpr uint8_t REG_CFGR
void dump_config() override
void status_clear_warning()
void publish_state(float state)
Publish a new state to the front-end.
constexpr uint16_t EXPECT_DIEID
constexpr const char * c_str() const
bool write_byte(uint8_t a_register, uint8_t data, bool stop=true)
virtual void mark_failed()
Mark this component as failed.
Implementation of SPI Controller mode.
bool write_byte_16(uint8_t a_register, uint16_t data)
constexpr uint8_t REG_HLIM
void send_alert_limit_low_()