ESPHome  2025.3.3
sensor_mlx90393.cpp
Go to the documentation of this file.
1 #include "sensor_mlx90393.h"
2 #include "esphome/core/log.h"
3 
4 namespace esphome {
5 namespace mlx90393 {
6 
7 static const char *const TAG = "mlx90393";
8 
9 bool MLX90393Cls::transceive(const uint8_t *request, size_t request_size, uint8_t *response, size_t response_size) {
10  i2c::ErrorCode e = this->write(request, request_size);
11  if (e != i2c::ErrorCode::ERROR_OK) {
12  return false;
13  }
14  e = this->read(response, response_size);
15  return e == i2c::ErrorCode::ERROR_OK;
16 }
17 
18 bool MLX90393Cls::has_drdy_pin() { return this->drdy_pin_ != nullptr; }
19 
21  if (this->drdy_pin_ == nullptr) {
22  return false;
23  } else {
24  return this->drdy_pin_->digital_read();
25  }
26 }
27 void MLX90393Cls::sleep_millis(uint32_t millis) { delay(millis); }
29 
31  ESP_LOGCONFIG(TAG, "Setting up MLX90393...");
32  // note the two arguments A0 and A1 which are used to construct an i2c address
33  // we can hard-code these because we never actually use the constructed address
34  // see the transceive function above, which uses the address from I2CComponent
35  this->mlx_.begin_with_hal(this, 0, 0);
36 
37  this->mlx_.setGainSel(this->gain_);
38 
39  this->mlx_.setResolution(this->resolutions_[0], this->resolutions_[1], this->resolutions_[2]);
40 
41  this->mlx_.setOverSampling(this->oversampling_);
42 
43  this->mlx_.setDigitalFiltering(this->filter_);
44 
45  this->mlx_.setTemperatureOverSampling(this->temperature_oversampling_);
46 
47  this->mlx_.setTemperatureCompensation(this->temperature_compensation_);
48 
49  this->mlx_.setHallConf(this->hallconf_);
50 }
51 
53  ESP_LOGCONFIG(TAG, "MLX90393:");
54  LOG_I2C_DEVICE(this);
55 
56  if (this->is_failed()) {
57  ESP_LOGE(TAG, "Communication with MLX90393 failed!");
58  return;
59  }
60  LOG_UPDATE_INTERVAL(this);
61 
62  LOG_SENSOR(" ", "X Axis", this->x_sensor_);
63  LOG_SENSOR(" ", "Y Axis", this->y_sensor_);
64  LOG_SENSOR(" ", "Z Axis", this->z_sensor_);
65  LOG_SENSOR(" ", "Temperature", this->t_sensor_);
66 }
67 
69 
71  MLX90393::txyz data;
72 
73  if (this->mlx_.readData(data) == MLX90393::STATUS_OK) {
74  ESP_LOGD(TAG, "received %f %f %f", data.x, data.y, data.z);
75  if (this->x_sensor_ != nullptr) {
76  this->x_sensor_->publish_state(data.x);
77  }
78  if (this->y_sensor_ != nullptr) {
79  this->y_sensor_->publish_state(data.y);
80  }
81  if (this->z_sensor_ != nullptr) {
82  this->z_sensor_->publish_state(data.z);
83  }
84  if (this->t_sensor_ != nullptr) {
85  this->t_sensor_->publish_state(data.t);
86  }
87  this->status_clear_warning();
88  } else {
89  ESP_LOGE(TAG, "failed to read data");
90  this->status_set_warning();
91  }
92 }
93 
94 } // namespace mlx90393
95 } // namespace esphome
const float DATA
For components that import data from directly connected sensors like DHT.
Definition: component.cpp:19
void status_set_warning(const char *message="unspecified")
Definition: component.cpp:151
bool is_failed() const
Definition: component.cpp:143
ErrorCode read(uint8_t *data, size_t len)
reads an array of bytes from the device using an I2CBus
Definition: i2c.h:160
uint32_t IRAM_ATTR HOT micros()
Definition: core.cpp:27
void sleep_millis(uint32_t millis) override
uint32_t IRAM_ATTR HOT millis()
Definition: core.cpp:25
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:186
float get_setup_priority() const override
void sleep_micros(uint32_t micros) override
bool transceive(const uint8_t *request, size_t request_size, uint8_t *response, size_t response_size) override
void status_clear_warning()
Definition: component.cpp:166
void publish_state(float state)
Publish a new state to the front-end.
Definition: sensor.cpp:39
virtual bool digital_read()=0
Implementation of SPI Controller mode.
Definition: a01nyub.cpp:7
void IRAM_ATTR HOT delayMicroseconds(uint32_t us)
Definition: core.cpp:28
ErrorCode
Error codes returned by I2CBus and I2CDevice methods.
Definition: i2c_bus.h:11
void IRAM_ATTR HOT delay(uint32_t ms)
Definition: core.cpp:26