ESPHome 2025.9.0-dev
Loading...
Searching...
No Matches
sensor_mlx90393.cpp
Go to the documentation of this file.
1#include "sensor_mlx90393.h"
2#include "esphome/core/log.h"
3
4namespace esphome {
5namespace mlx90393 {
6
7static const char *const TAG = "mlx90393";
8
9const LogString *settings_to_string(MLX90393Setting setting) {
10 switch (setting) {
12 return LOG_STR("gain");
14 return LOG_STR("resolution");
16 return LOG_STR("oversampling");
18 return LOG_STR("digital filtering");
20 return LOG_STR("temperature oversampling");
22 return LOG_STR("temperature compensation");
24 return LOG_STR("hallconf");
25 case MLX90393_LAST:
26 return LOG_STR("error");
27 default:
28 return LOG_STR("unknown");
29 }
30};
31
32bool MLX90393Cls::transceive(const uint8_t *request, size_t request_size, uint8_t *response, size_t response_size) {
33 i2c::ErrorCode e = this->write(request, request_size);
34 if (e != i2c::ErrorCode::ERROR_OK) {
35 ESP_LOGV(TAG, "i2c failed to write %u", e);
36 return false;
37 }
38 e = this->read(response, response_size);
39 if (e != i2c::ErrorCode::ERROR_OK) {
40 ESP_LOGV(TAG, "i2c failed to read %u", e);
41 return false;
42 }
43 return true;
44}
45
46bool MLX90393Cls::has_drdy_pin() { return this->drdy_pin_ != nullptr; }
47
49 if (this->drdy_pin_ == nullptr) {
50 return false;
51 } else {
52 return this->drdy_pin_->digital_read();
53 }
54}
57
59 uint8_t ret = -1;
60 switch (which) {
62 ret = this->mlx_.setGainSel(this->gain_);
63 break;
65 ret = this->mlx_.setResolution(this->resolutions_[0], this->resolutions_[1], this->resolutions_[2]);
66 break;
68 ret = this->mlx_.setOverSampling(this->oversampling_);
69 break;
71 ret = this->mlx_.setDigitalFiltering(this->filter_);
72 break;
74 ret = this->mlx_.setTemperatureOverSampling(this->temperature_oversampling_);
75 break;
77 ret = this->mlx_.setTemperatureCompensation(this->temperature_compensation_);
78 break;
80 ret = this->mlx_.setHallConf(this->hallconf_);
81 break;
82 default:
83 break;
84 }
85 if (ret != MLX90393::STATUS_OK) {
86 ESP_LOGE(TAG, "failed to apply %s", LOG_STR_ARG(settings_to_string(which)));
87 }
88 return ret;
89}
90
92 // perform dummy read after reset
93 // first one always gets NAK even tough everything is fine
94 uint8_t ignore = 0;
95 this->mlx_.getGainSel(ignore);
96
97 uint8_t result = MLX90393::STATUS_OK;
98 for (int i = MLX90393_GAIN_SEL; i != MLX90393_LAST; i++) {
99 MLX90393Setting stage = static_cast<MLX90393Setting>(i);
100 result |= this->apply_setting_(stage);
101 }
102 return result == MLX90393::STATUS_OK;
103}
104
106 // note the two arguments A0 and A1 which are used to construct an i2c address
107 // we can hard-code these because we never actually use the constructed address
108 // see the transceive function above, which uses the address from I2CComponent
109 this->mlx_.begin_with_hal(this, 0, 0);
110
111 if (!this->apply_all_settings_()) {
112 this->mark_failed();
113 }
114
115 // start verify settings process
116 this->set_timeout("verify settings", 3000, [this]() { this->verify_settings_timeout_(MLX90393_GAIN_SEL); });
117}
118
120 ESP_LOGCONFIG(TAG, "MLX90393:");
121 LOG_I2C_DEVICE(this);
122
123 if (this->is_failed()) {
124 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
125 return;
126 }
127 LOG_UPDATE_INTERVAL(this);
128
129 LOG_SENSOR(" ", "X Axis", this->x_sensor_);
130 LOG_SENSOR(" ", "Y Axis", this->y_sensor_);
131 LOG_SENSOR(" ", "Z Axis", this->z_sensor_);
132 LOG_SENSOR(" ", "Temperature", this->t_sensor_);
133}
134
136
138 MLX90393::txyz data;
139
140 if (this->mlx_.readData(data) == MLX90393::STATUS_OK) {
141 ESP_LOGD(TAG, "received %f %f %f", data.x, data.y, data.z);
142 if (this->x_sensor_ != nullptr) {
143 this->x_sensor_->publish_state(data.x);
144 }
145 if (this->y_sensor_ != nullptr) {
146 this->y_sensor_->publish_state(data.y);
147 }
148 if (this->z_sensor_ != nullptr) {
149 this->z_sensor_->publish_state(data.z);
150 }
151 if (this->t_sensor_ != nullptr) {
152 this->t_sensor_->publish_state(data.t);
153 }
154 this->status_clear_warning();
155 } else {
156 ESP_LOGE(TAG, "failed to read data");
157 this->status_set_warning();
158 }
159}
160
162 uint8_t read_value = 0xFF;
163 uint8_t expected_value = 0xFF;
164 uint8_t read_status = -1;
165 char read_back_str[25] = {0};
166
167 switch (which) {
168 case MLX90393_GAIN_SEL: {
169 read_status = this->mlx_.getGainSel(read_value);
170 expected_value = this->gain_;
171 break;
172 }
173
174 case MLX90393_RESOLUTION: {
175 uint8_t read_resolutions[3] = {0xFF};
176 read_status = this->mlx_.getResolution(read_resolutions[0], read_resolutions[1], read_resolutions[2]);
177 snprintf(read_back_str, sizeof(read_back_str), "%u %u %u expected %u %u %u", read_resolutions[0],
178 read_resolutions[1], read_resolutions[2], this->resolutions_[0], this->resolutions_[1],
179 this->resolutions_[2]);
180 bool is_correct = true;
181 for (int i = 0; i < 3; i++) {
182 is_correct &= read_resolutions[i] == this->resolutions_[i];
183 }
184 if (is_correct) {
185 // set read_value and expected_value to same number, so the code blow recognizes it is correct
186 read_value = 0;
187 expected_value = 0;
188 } else {
189 // set to different numbers, to show incorrect
190 read_value = 1;
191 expected_value = 0;
192 }
193 break;
194 }
196 read_status = this->mlx_.getOverSampling(read_value);
197 expected_value = this->oversampling_;
198 break;
199 }
201 read_status = this->mlx_.getDigitalFiltering(read_value);
202 expected_value = this->filter_;
203 break;
204 }
206 read_status = this->mlx_.getTemperatureOverSampling(read_value);
207 expected_value = this->temperature_oversampling_;
208 break;
209 }
211 read_status = this->mlx_.getTemperatureCompensation(read_value);
212 expected_value = (bool) this->temperature_compensation_;
213 break;
214 }
215 case MLX90393_HALLCONF: {
216 read_status = this->mlx_.getHallConf(read_value);
217 expected_value = this->hallconf_;
218 break;
219 }
220 default: {
221 return false;
222 }
223 }
224 if (read_status != MLX90393::STATUS_OK) {
225 ESP_LOGE(TAG, "verify error: failed to read %s", LOG_STR_ARG(settings_to_string(which)));
226 return false;
227 }
228 if (read_back_str[0] == 0x0) {
229 snprintf(read_back_str, sizeof(read_back_str), "%u expected %u", read_value, expected_value);
230 }
231 bool is_correct = read_value == expected_value;
232 if (!is_correct) {
233 ESP_LOGW(TAG, "verify failed: read back wrong %s: got %s", LOG_STR_ARG(settings_to_string(which)), read_back_str);
234 return false;
235 }
236 ESP_LOGD(TAG, "verify succeeded for %s. got %s", LOG_STR_ARG(settings_to_string(which)), read_back_str);
237 return true;
238}
239
248 bool is_setting_ok = this->verify_setting_(stage);
249
250 if (!is_setting_ok) {
251 if (this->mlx_.checkStatus(this->mlx_.reset()) != MLX90393::STATUS_OK) {
252 ESP_LOGE(TAG, "failed to reset device");
253 this->status_set_error();
254 this->mark_failed();
255 return;
256 }
257
258 if (!this->apply_all_settings_()) {
259 ESP_LOGE(TAG, "failed to re-apply settings");
260 this->status_set_error();
261 this->mark_failed();
262 } else {
263 ESP_LOGI(TAG, "reset and re-apply settings completed");
264 }
265 }
266
267 MLX90393Setting next_stage = static_cast<MLX90393Setting>(static_cast<int>(stage) + 1);
268 if (next_stage == MLX90393_LAST) {
269 next_stage = static_cast<MLX90393Setting>(0);
270 }
271
272 this->set_timeout("verify settings", 3000, [this, next_stage]() { this->verify_settings_timeout_(next_stage); });
273}
274
275} // namespace mlx90393
276} // namespace esphome
virtual void mark_failed()
Mark this component as failed.
bool is_failed() const
void status_set_warning(const char *message=nullptr)
void status_clear_warning()
void set_timeout(const std::string &name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
void status_set_error(const char *message=nullptr)
virtual bool digital_read()=0
ErrorCode write(const uint8_t *data, size_t len, bool stop=true)
writes an array of bytes to a device using an I2CBus
Definition i2c.h:190
ErrorCode read(uint8_t *data, size_t len)
reads an array of bytes from the device using an I2CBus
Definition i2c.h:164
void sleep_micros(uint32_t micros) override
void sleep_millis(uint32_t millis) override
void verify_settings_timeout_(MLX90393Setting stage)
Regularly checks that our settings are still applied.
float get_setup_priority() const override
bool verify_setting_(MLX90393Setting which)
bool transceive(const uint8_t *request, size_t request_size, uint8_t *response, size_t response_size) override
uint8_t apply_setting_(MLX90393Setting which)
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:45
ErrorCode
Error codes returned by I2CBus and I2CDevice methods.
Definition i2c_bus.h:11
@ ERROR_OK
No error found during execution of method.
Definition i2c_bus.h:13
const LogString * settings_to_string(MLX90393Setting setting)
const float DATA
For components that import data from directly connected sensors like DHT.
Definition component.cpp:50
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
void IRAM_ATTR HOT delayMicroseconds(uint32_t us)
Definition core.cpp:31
uint32_t IRAM_ATTR HOT micros()
Definition core.cpp:30
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:29
uint32_t IRAM_ATTR HOT millis()
Definition core.cpp:28