ESPHome 2026.7.1
Loading...
Searching...
No Matches
qmc5883l.cpp
Go to the documentation of this file.
1#include "qmc5883l.h"
3#include "esphome/core/log.h"
4#include "esphome/core/hal.h"
5#include <cmath>
6#include <numbers>
7
9
10static const char *const TAG = "qmc5883l";
11
12static const uint8_t QMC5883L_ADDRESS = 0x0D;
13
14static const uint8_t QMC5883L_REGISTER_DATA_X_LSB = 0x00;
15static const uint8_t QMC5883L_REGISTER_DATA_X_MSB = 0x01;
16static const uint8_t QMC5883L_REGISTER_DATA_Y_LSB = 0x02;
17static const uint8_t QMC5883L_REGISTER_DATA_Y_MSB = 0x03;
18static const uint8_t QMC5883L_REGISTER_DATA_Z_LSB = 0x04;
19static const uint8_t QMC5883L_REGISTER_DATA_Z_MSB = 0x05;
20static const uint8_t QMC5883L_REGISTER_STATUS = 0x06;
21static const uint8_t QMC5883L_REGISTER_TEMPERATURE_LSB = 0x07;
22static const uint8_t QMC5883L_REGISTER_TEMPERATURE_MSB = 0x08;
23static const uint8_t QMC5883L_REGISTER_CONTROL_1 = 0x09;
24static const uint8_t QMC5883L_REGISTER_CONTROL_2 = 0x0A;
25static const uint8_t QMC5883L_REGISTER_PERIOD = 0x0B;
26
28
30 // Soft Reset
31 if (!this->write_byte(QMC5883L_REGISTER_CONTROL_2, 1 << 7)) {
33 this->mark_failed();
34 return;
35 }
36 delay(10);
37
38 if (this->drdy_pin_) {
39 this->drdy_pin_->setup();
40 if (this->drdy_pin_->is_internal()) {
41 static_cast<InternalGPIOPin *>(this->drdy_pin_)
43 this->drdy_use_isr_ = true;
44 this->stop_poller();
45 }
46 }
47
48 uint8_t control_1 = 0;
49 control_1 |= 0b01 << 0; // MODE (Mode) -> 0b00=standby, 0b01=continuous
50 control_1 |= this->datarate_ << 2;
51 control_1 |= this->range_ << 4;
52 control_1 |= this->oversampling_ << 6;
53 if (!this->write_byte(QMC5883L_REGISTER_CONTROL_1, control_1)) {
55 this->mark_failed();
56 return;
57 }
58
59 uint8_t control_2 = 0;
60 control_2 |= 0b0 << 7; // SOFT_RST (Soft Reset) -> 0b00=disabled, 0b01=enabled
61 control_2 |= 0b0 << 6; // ROL_PNT (Pointer Roll Over) -> 0b00=disabled, 0b01=enabled
62 control_2 |= 0b0 << 0; // INT_ENB (Interrupt) -> 0b00=disabled, 0b01=enabled
63 if (!this->write_byte(QMC5883L_REGISTER_CONTROL_2, control_2)) {
65 this->mark_failed();
66 return;
67 }
68
69 uint8_t period = 0x01; // recommended value
70 if (!this->write_byte(QMC5883L_REGISTER_PERIOD, period)) {
72 this->mark_failed();
73 return;
74 }
75
76 if (!this->drdy_use_isr_ && this->get_update_interval() < App.get_loop_interval()) {
77 this->high_freq_.start();
78 }
79}
80
82 ESP_LOGCONFIG(TAG, "QMC5883L:");
83 LOG_I2C_DEVICE(this);
84 if (this->error_code_ == COMMUNICATION_FAILED) {
85 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
86 }
87 LOG_UPDATE_INTERVAL(this);
88
89 LOG_SENSOR(" ", "X Axis", this->x_sensor_);
90 LOG_SENSOR(" ", "Y Axis", this->y_sensor_);
91 LOG_SENSOR(" ", "Z Axis", this->z_sensor_);
92 LOG_SENSOR(" ", "Heading", this->heading_sensor_);
93 LOG_SENSOR(" ", "Temperature", this->temperature_sensor_);
94 LOG_PIN(" DRDY Pin: ", this->drdy_pin_);
95 if (this->drdy_pin_ != nullptr) {
96 ESP_LOGCONFIG(TAG, " DRDY mode: %s",
97 this->drdy_use_isr_ ? LOG_STR_LITERAL("interrupt") : LOG_STR_LITERAL("polling"));
98 }
99}
100
102 // If DRDY is on an external expander we keep the polling path and early-return
103 // if data is not ready yet. Internal DRDY pins take the ISR path via loop().
104 if (this->drdy_pin_ && !this->drdy_pin_->digital_read()) {
105 return;
106 }
107 this->read_sensor_();
108}
109
111 this->disable_loop();
112 if (!this->drdy_use_isr_ || !this->drdy_pin_->digital_read()) {
113 return;
114 }
115 this->read_sensor_();
116}
117
119 i2c::ErrorCode err;
120 uint8_t status = false;
121
122 // Status byte gets cleared when data is read, so we have to read this first.
123 // If status and two axes are desired, it's possible to save one byte of traffic by enabling
124 // ROL_PNT in setup and reading 7 bytes starting at the status register.
125 // If status and all three axes are desired, using ROL_PNT saves you 3 bytes.
126 // But simply not reading status saves you 4 bytes always and is much simpler.
127 if (ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERBOSE) {
128 err = this->read_register(QMC5883L_REGISTER_STATUS, &status, 1);
129 if (err != i2c::ERROR_OK) {
130 char buf[32];
131 snprintf(buf, sizeof(buf), "status read failed (%d)", err);
132 this->status_set_warning(buf);
133 return;
134 }
135 }
136
137 uint16_t raw[3] = {0};
138 // Z must always be requested, otherwise the data registers will remain locked against updates.
139 // Skipping the Y axis if X and Z are needed actually requires an additional byte of comms.
140 // Starting partway through the axes does save you traffic.
141 uint8_t start, dest;
142 if (this->heading_sensor_ != nullptr || this->x_sensor_ != nullptr) {
143 start = QMC5883L_REGISTER_DATA_X_LSB;
144 dest = 0;
145 } else if (this->y_sensor_ != nullptr) {
146 start = QMC5883L_REGISTER_DATA_Y_LSB;
147 dest = 1;
148 } else {
149 start = QMC5883L_REGISTER_DATA_Z_LSB;
150 dest = 2;
151 }
152 err = this->read_bytes_16_le_(start, &raw[dest], 3 - dest);
153 if (err != i2c::ERROR_OK) {
154 char buf[32];
155 snprintf(buf, sizeof(buf), "mag read failed (%d)", err);
156 this->status_set_warning(buf);
157 return;
158 }
159
160 float mg_per_bit;
161 switch (this->range_) {
163 mg_per_bit = 0.0833f;
164 break;
166 mg_per_bit = 0.333f;
167 break;
168 default:
169 mg_per_bit = NAN;
170 }
171
172 // in µT
173 const float x = int16_t(raw[0]) * mg_per_bit * 0.1f;
174 const float y = int16_t(raw[1]) * mg_per_bit * 0.1f;
175 const float z = int16_t(raw[2]) * mg_per_bit * 0.1f;
176
177 float heading = atan2f(0.0f - x, y) * 180.0f / std::numbers::pi_v<float>;
178
179 float temp = NAN;
180 if (this->temperature_sensor_ != nullptr) {
181 uint16_t raw_temp;
182 err = this->read_bytes_16_le_(QMC5883L_REGISTER_TEMPERATURE_LSB, &raw_temp);
183 if (err != i2c::ERROR_OK) {
184 char buf[32];
185 snprintf(buf, sizeof(buf), "temp read failed (%d)", err);
186 this->status_set_warning(buf);
187 return;
188 }
189 temp = int16_t(raw_temp) * 0.01f;
190 }
191
192 ESP_LOGV(TAG, "Got x=%0.02fµT y=%0.02fµT z=%0.02fµT heading=%0.01f° temperature=%0.01f°C status=%u", x, y, z, heading,
193 temp, status);
194
195 if (this->x_sensor_ != nullptr)
196 this->x_sensor_->publish_state(x);
197 if (this->y_sensor_ != nullptr)
198 this->y_sensor_->publish_state(y);
199 if (this->z_sensor_ != nullptr)
200 this->z_sensor_->publish_state(z);
201 if (this->heading_sensor_ != nullptr)
202 this->heading_sensor_->publish_state(heading);
203 if (this->temperature_sensor_ != nullptr)
205}
206
207i2c::ErrorCode QMC5883LComponent::read_bytes_16_le_(uint8_t a_register, uint16_t *data, uint8_t len) {
208 i2c::ErrorCode err = this->read_register(a_register, reinterpret_cast<uint8_t *>(data), len * 2);
209 if (err != i2c::ERROR_OK)
210 return err;
211 for (size_t i = 0; i < len; i++)
212 data[i] = convert_little_endian(data[i]);
213 return err;
214}
215
216} // namespace esphome::qmc5883l
uint8_t raw[35]
Definition bl0939.h:0
uint8_t status
Definition bl0942.h:8
uint32_t get_loop_interval() const
void mark_failed()
Mark this component as failed.
void enable_loop_soon_any_context()
Thread and ISR-safe version of enable_loop() that can be called from any context.
void disable_loop()
Disable this component's loop.
virtual void setup()=0
virtual bool is_internal()
Definition gpio.h:81
virtual bool digital_read()=0
void start()
Start running the loop continuously.
Definition helpers.cpp:729
virtual uint32_t get_update_interval() const
Get the update interval in ms of this sensor.
bool write_byte(uint8_t a_register, uint8_t data) const
Definition i2c.h:265
ErrorCode read_register(uint8_t a_register, uint8_t *data, size_t len)
reads an array of bytes from a specific register in the I²C device
Definition i2c.cpp:25
sensor::Sensor * temperature_sensor_
Definition qmc5883l.h:57
enum esphome::qmc5883l::QMC5883LComponent::ErrorCode error_code_
i2c::ErrorCode read_bytes_16_le_(uint8_t a_register, uint16_t *data, uint8_t len=1)
Definition qmc5883l.cpp:207
QMC5883LOversampling oversampling_
Definition qmc5883l.h:52
static void IRAM_ATTR gpio_intr(QMC5883LComponent *arg)
Definition qmc5883l.cpp:27
HighFrequencyLoopRequester high_freq_
Definition qmc5883l.h:65
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:68
u_int8_t raw_temp
bool z
Definition msa3xx.h:1
@ INTERRUPT_RISING_EDGE
Definition gpio.h:48
ErrorCode
Error codes returned by I2CBus and I2CDevice methods.
Definition i2c_bus.h:12
@ ERROR_OK
No error found during execution of method.
Definition i2c_bus.h:14
constexpr T convert_little_endian(T val)
Convert a value between host byte order and little endian (least significant byte first) order.
Definition helpers.h:938
const void size_t len
Definition hal.h:64
void HOT delay(uint32_t ms)
Definition hal.cpp:85
Application App
Global storage of Application pointer - only one Application can exist.
uint16_t x
Definition tt21100.cpp:5
uint16_t y
Definition tt21100.cpp:6