ESPHome 2025.9.0-dev
Loading...
Searching...
No Matches
veml7700.cpp
Go to the documentation of this file.
1#include "veml7700.h"
3#include "esphome/core/log.h"
4
5namespace esphome {
6namespace veml7700 {
7
8static const char *const TAG = "veml7700";
9static const size_t VEML_REG_SIZE = 2;
10
11static float reduce_to_zero(float a, float b) { return (a > b) ? (a - b) : 0; }
12
13template<typename T, size_t size> T get_next(const T (&array)[size], const T val) {
14 size_t i = 0;
15 size_t idx = -1;
16 while (idx == -1 && i < size) {
17 if (array[i] == val) {
18 idx = i;
19 break;
20 }
21 i++;
22 }
23 if (idx == -1 || i + 1 >= size)
24 return val;
25 return array[i + 1];
26}
27
28template<typename T, size_t size> T get_prev(const T (&array)[size], const T val) {
29 size_t i = size - 1;
30 size_t idx = -1;
31 while (idx == -1 && i > 0) {
32 if (array[i] == val) {
33 idx = i;
34 break;
35 }
36 i--;
37 }
38 if (idx == -1 || i == 0)
39 return val;
40 return array[i - 1];
41}
42
43static uint16_t get_itime_ms(IntegrationTime time) {
44 uint16_t ms = 0;
45 switch (time) {
47 ms = 100;
48 break;
50 ms = 200;
51 break;
53 ms = 400;
54 break;
56 ms = 800;
57 break;
59 ms = 50;
60 break;
62 ms = 25;
63 break;
64 default:
65 ms = 100;
66 }
67 return ms;
68}
69
70static float get_gain_coeff(Gain gain) {
71 static const float GAIN_FLOAT[GAINS_COUNT] = {1.0f, 2.0f, 0.125f, 0.25f};
72 return GAIN_FLOAT[gain & 0b11];
73}
74
75static const char *get_gain_str(Gain gain) {
76 static const char *gain_str[GAINS_COUNT] = {"1x", "2x", "1/8x", "1/4x"};
77 return gain_str[gain & 0b11];
78}
79
81 auto err = this->configure_();
82 if (err != i2c::ERROR_OK) {
83 ESP_LOGW(TAG, "Sensor configuration failed");
84 this->mark_failed();
85 } else {
86 this->state_ = State::INITIAL_SETUP_COMPLETED;
87 }
88}
89
91 LOG_I2C_DEVICE(this);
92 ESP_LOGCONFIG(TAG, " Automatic gain/time: %s", YESNO(this->automatic_mode_enabled_));
93 if (!this->automatic_mode_enabled_) {
94 ESP_LOGCONFIG(TAG,
95 " Gain: %s\n"
96 " Integration time: %d ms",
97 get_gain_str(this->gain_), get_itime_ms(this->integration_time_));
98 }
99 ESP_LOGCONFIG(TAG,
100 " Lux compensation: %s\n"
101 " Glass attenuation factor: %f",
103 LOG_UPDATE_INTERVAL(this);
104
105 LOG_SENSOR(" ", "ALS channel lux", this->ambient_light_sensor_);
106 LOG_SENSOR(" ", "ALS channel counts", this->ambient_light_counts_sensor_);
107 LOG_SENSOR(" ", "WHITE channel lux", this->white_sensor_);
108 LOG_SENSOR(" ", "WHITE channel counts", this->white_counts_sensor_);
109 LOG_SENSOR(" ", "FAKE_IR channel lux", this->fake_infrared_sensor_);
110 LOG_SENSOR(" ", "Actual gain", this->actual_gain_sensor_);
111 LOG_SENSOR(" ", "Actual integration time", this->actual_integration_time_sensor_);
112
113 if (this->is_failed()) {
114 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
115 }
116}
117
119 if (this->is_ready() && this->state_ == State::IDLE) {
120 ESP_LOGV(TAG, "Update: Initiating new data collection");
121
123
124 this->readings_.als_counts = 0;
125 this->readings_.white_counts = 0;
127 this->readings_.actual_gain = this->gain_;
128 this->readings_.als_lux = 0;
129 this->readings_.white_lux = 0;
131 } else {
132 ESP_LOGV(TAG, "Update: Component not ready yet");
133 }
134}
135
138
139 if (this->state_ == State::INITIAL_SETUP_COMPLETED) {
140 // Datasheet: 2.5 ms before the first measurement is needed, allowing for the correct start of the signal processor
141 // and oscillator.
142 // Reality: wait for couple integration times to have first samples captured
143 this->set_timeout(2 * this->integration_time_, [this]() { this->state_ = State::IDLE; });
144 }
145
146 if (this->is_ready()) {
147 switch (this->state_) {
148 case State::IDLE:
149 // doing nothing, having best time
150 break;
151
153 err = this->read_sensor_output_(this->readings_);
154 this->state_ = (err == i2c::ERROR_OK) ? State::DATA_COLLECTED : State::IDLE;
155 break;
156
157 case State::COLLECTING_DATA_AUTO: // Automatic mode - we start here to reconfigure device first
159 if (!this->are_adjustments_required_(this->readings_)) {
160 this->state_ = State::READY_TO_PUBLISH_PART_1;
161 } else {
162 // if sensitivity adjustment needed -
163 // shutdown device to change config and wait one integration time period
164 this->state_ = State::ADJUSTMENT_IN_PROGRESS;
165 err = this->reconfigure_time_and_gain_(this->readings_.actual_time, this->readings_.actual_gain, true);
166 if (err == i2c::ERROR_OK) {
167 this->set_timeout(1 * get_itime_ms(this->readings_.actual_time),
168 [this]() { this->state_ = State::READY_TO_APPLY_ADJUSTMENTS; });
169 } else {
170 this->state_ = State::IDLE;
171 }
172 }
173 break;
174
176 // nothing to be done, just waiting for the timeout
177 break;
178
180 // second stage of sensitivity adjustment - turn device back on
181 // and wait 2-3 integration time periods to get good data samples
182 this->state_ = State::ADJUSTMENT_IN_PROGRESS;
183 err = this->reconfigure_time_and_gain_(this->readings_.actual_time, this->readings_.actual_gain, false);
184 if (err == i2c::ERROR_OK) {
185 this->set_timeout(3 * get_itime_ms(this->readings_.actual_time),
186 [this]() { this->state_ = State::COLLECTING_DATA; });
187 } else {
188 this->state_ = State::IDLE;
189 }
190 break;
191
193 this->status_clear_warning();
194
198
199 this->publish_data_part_1_(this->readings_);
200 this->state_ = State::READY_TO_PUBLISH_PART_2;
201 break;
202
204 this->publish_data_part_2_(this->readings_);
205 this->state_ = State::READY_TO_PUBLISH_PART_3;
206 break;
207
209 this->publish_data_part_3_(this->readings_);
210 this->state_ = State::IDLE;
211 break;
212
213 default:
214 break;
215 }
216 if (err != i2c::ERROR_OK)
217 this->status_set_warning();
218 }
219}
220
222 ESP_LOGV(TAG, "Configure");
223
224 ConfigurationRegister als_conf{0};
225 als_conf.ALS_INT_EN = false;
226 als_conf.ALS_PERS = Persistence::PERSISTENCE_1;
227 als_conf.ALS_IT = this->integration_time_;
228 als_conf.ALS_GAIN = this->gain_;
229
230 als_conf.ALS_SD = true;
231 ESP_LOGV(TAG, "Shutdown before config. ALS_CONF_0 to 0x%04X", als_conf.raw);
232 auto err = this->write_register((uint8_t) CommandRegisters::ALS_CONF_0, als_conf.raw_bytes, VEML_REG_SIZE);
233 if (err != i2c::ERROR_OK) {
234 ESP_LOGW(TAG, "Failed to shutdown, I2C error %d", err);
235 return err;
236 }
237 delay(3);
238
239 als_conf.ALS_SD = false;
240 ESP_LOGV(TAG, "Turning on. Setting ALS_CONF_0 to 0x%04X", als_conf.raw);
241 err = this->write_register((uint8_t) CommandRegisters::ALS_CONF_0, als_conf.raw_bytes, VEML_REG_SIZE);
242 if (err != i2c::ERROR_OK) {
243 ESP_LOGW(TAG, "Failed to turn on, I2C error %d", err);
244 return err;
245 }
246
247 PSMRegister psm{0};
249 psm.PSM_EN = false;
250 ESP_LOGV(TAG, "Setting PSM to 0x%04X", psm.raw);
251 err = this->write_register((uint8_t) CommandRegisters::PWR_SAVING, psm.raw_bytes, VEML_REG_SIZE);
252 if (err != i2c::ERROR_OK) {
253 ESP_LOGW(TAG, "Failed to set PSM, I2C error %d", err);
254 return err;
255 }
256
257 return err;
258}
259
261 ESP_LOGV(TAG, "Reconfigure time and gain (%d ms, %s) %s", get_itime_ms(time), get_gain_str(gain),
262 shutdown ? "Shutting down" : "Turning back on");
263
264 ConfigurationRegister als_conf{0};
265 als_conf.raw = 0;
266
267 // We have to before changing parameters
268 als_conf.ALS_SD = shutdown;
269 als_conf.ALS_INT_EN = false;
270 als_conf.ALS_PERS = Persistence::PERSISTENCE_1;
271 als_conf.ALS_IT = time;
272 als_conf.ALS_GAIN = gain;
273 auto err = this->write_register((uint8_t) CommandRegisters::ALS_CONF_0, als_conf.raw_bytes, VEML_REG_SIZE);
274 if (err != i2c::ERROR_OK) {
275 ESP_LOGW(TAG, "%s failed", shutdown ? "Shutdown" : "Turn on");
276 }
277
278 return err;
279}
280
282 auto als_err =
283 this->read_register((uint8_t) CommandRegisters::ALS, (uint8_t *) &data.als_counts, VEML_REG_SIZE, false);
284 if (als_err != i2c::ERROR_OK) {
285 ESP_LOGW(TAG, "Error reading ALS register, err = %d", als_err);
286 }
287 auto white_err =
288 this->read_register((uint8_t) CommandRegisters::WHITE, (uint8_t *) &data.white_counts, VEML_REG_SIZE, false);
289 if (white_err != i2c::ERROR_OK) {
290 ESP_LOGW(TAG, "Error reading WHITE register, err = %d", white_err);
291 }
292
293 ConfigurationRegister conf{0};
294 auto err =
295 this->read_register((uint8_t) CommandRegisters::ALS_CONF_0, (uint8_t *) conf.raw_bytes, VEML_REG_SIZE, false);
296 if (err != i2c::ERROR_OK) {
297 ESP_LOGW(TAG, "Error reading ALS_CONF_0 register, err = %d", white_err);
298 }
299 data.actual_time = conf.ALS_IT;
300 data.actual_gain = conf.ALS_GAIN;
301
302 ESP_LOGV(TAG, "Data from sensors: ALS = %d, WHITE = %d, Gain = %s, Time = %d ms", data.als_counts, data.white_counts,
303 get_gain_str(data.actual_gain), get_itime_ms(data.actual_time));
304 return std::max(als_err, white_err);
305}
306
308 // skip first sample in auto mode -
309 // we need to reconfigure device after last measurement
310 if (this->state_ == State::COLLECTING_DATA_AUTO)
311 return true;
312
313 if (!this->automatic_mode_enabled_)
314 return false;
315
316 // Recommended thresholds as per datasheet
317 static constexpr uint16_t LOW_INTENSITY_THRESHOLD = 100;
318 static constexpr uint16_t HIGH_INTENSITY_THRESHOLD = 10000;
319
323 static const Gain GAINS[GAINS_COUNT] = {X_1_8, X_1_4, X_1, X_2};
324
325 if (data.als_counts <= LOW_INTENSITY_THRESHOLD) {
326 Gain next_gain = get_next(GAINS, data.actual_gain);
327 if (next_gain != data.actual_gain) {
328 data.actual_gain = next_gain;
329 return true;
330 }
331 IntegrationTime next_time = get_next(TIMES, data.actual_time);
332 if (next_time != data.actual_time) {
333 data.actual_time = next_time;
334 return true;
335 }
336 } else if (data.als_counts >= HIGH_INTENSITY_THRESHOLD) {
337 Gain prev_gain = get_prev(GAINS, data.actual_gain);
338 if (prev_gain != data.actual_gain) {
339 data.actual_gain = prev_gain;
340 return true;
341 }
342 IntegrationTime prev_time = get_prev(TIMES, data.actual_time);
343 if (prev_time != data.actual_time) {
344 data.actual_time = prev_time;
345 return true;
346 }
347 }
348
349 // Counts are either good (between thresholds)
350 // or there is no room to change sensitivity anymore
351 return false;
352}
353
355 static const float MAX_GAIN = 2.0f;
356 static const float MAX_ITIME_MS = 800.0f;
357 static const float MAX_LX_RESOLUTION = 0.0036f;
358 float lux_resolution = (MAX_ITIME_MS / (float) get_itime_ms(data.actual_time)) *
359 (MAX_GAIN / get_gain_coeff(data.actual_gain)) * MAX_LX_RESOLUTION;
360 ESP_LOGV(TAG, "Lux resolution for (%d, %s) = %.4f ", get_itime_ms(data.actual_time), get_gain_str(data.actual_gain),
361 lux_resolution);
362
363 data.als_lux = lux_resolution * (float) data.als_counts;
364 data.white_lux = lux_resolution * (float) data.white_counts;
365 data.fake_infrared_lux = reduce_to_zero(data.white_lux, data.als_lux);
366
367 ESP_LOGV(TAG, "%s mode - ALS = %.1f lx, WHITE = %.1f lx, FAKE_IR = %.1f lx",
368 this->automatic_mode_enabled_ ? "Automatic" : "Manual", data.als_lux, data.white_lux,
369 data.fake_infrared_lux);
370}
371
373 if (!this->lux_compensation_enabled_)
374 return;
375 auto &local_data = data;
376 // Always apply correction for G1/4 and G1/8
377 // Other Gains G1 and G2 are not supposed to be used for lux > 1000,
378 // corrections may help, but not a lot.
379 //
380 // "Illumination values higher than 1000 lx show non-linearity.
381 // This non-linearity is the same for all sensors, so a compensation formula can be applied
382 // if this light level is exceeded"
383 auto compensate = [&local_data](float &lux) {
384 auto calculate_high_lux_compensation = [](float lux_veml) -> float {
385 return (((6.0135e-13 * lux_veml - 9.3924e-9) * lux_veml + 8.1488e-5) * lux_veml + 1.0023) * lux_veml;
386 };
387
388 if (lux > 1000.0f || local_data.actual_gain == Gain::X_1_8 || local_data.actual_gain == Gain::X_1_4) {
389 lux = calculate_high_lux_compensation(lux);
390 }
391 };
392
393 compensate(data.als_lux);
394 compensate(data.white_lux);
395 data.fake_infrared_lux = reduce_to_zero(data.white_lux, data.als_lux);
396
397 ESP_LOGV(TAG, "Lux compensation - ALS = %.1f lx, WHITE = %.1f lx, FAKE_IR = %.1f lx", data.als_lux, data.white_lux,
398 data.fake_infrared_lux);
399}
400
404 data.fake_infrared_lux = reduce_to_zero(data.white_lux, data.als_lux);
405 ESP_LOGV(TAG, "Glass attenuation - ALS = %.1f lx, WHITE = %.1f lx, FAKE_IR = %.1f lx", data.als_lux, data.white_lux,
406 data.fake_infrared_lux);
407}
408
410 if (this->ambient_light_sensor_ != nullptr) {
412 }
413 if (this->white_sensor_ != nullptr) {
415 }
416}
417
419 if (this->fake_infrared_sensor_ != nullptr) {
421 }
422 if (this->ambient_light_counts_sensor_ != nullptr) {
424 }
425 if (this->white_counts_sensor_ != nullptr) {
427 }
428}
429
431 if (this->actual_gain_sensor_ != nullptr) {
432 this->actual_gain_sensor_->publish_state(get_gain_coeff(data.actual_gain));
433 }
434 if (this->actual_integration_time_sensor_ != nullptr) {
436 }
437}
438} // namespace veml7700
439} // namespace esphome
virtual void mark_failed()
Mark this component as failed.
bool is_failed() const
void status_set_warning(const char *message=nullptr)
bool is_ready() const
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.
ErrorCode write_register(uint8_t a_register, const uint8_t *data, size_t len, bool stop=true)
writes an array of bytes to a specific register in the I²C device
Definition i2c.cpp:25
ErrorCode read_register(uint8_t a_register, uint8_t *data, size_t len, bool stop=true)
reads an array of bytes from a specific register in the I²C device
Definition i2c.cpp:10
void publish_state(float state)
Publish a new state to the front-end.
Definition sensor.cpp:45
void publish_data_part_1_(Readings &data)
Definition veml7700.cpp:409
void publish_data_part_2_(Readings &data)
Definition veml7700.cpp:418
void publish_data_part_3_(Readings &data)
Definition veml7700.cpp:430
sensor::Sensor * white_counts_sensor_
Definition veml7700.h:194
void apply_glass_attenuation_(Readings &data)
Definition veml7700.cpp:401
sensor::Sensor * ambient_light_counts_sensor_
Definition veml7700.h:192
bool are_adjustments_required_(Readings &data)
Definition veml7700.cpp:307
ErrorCode reconfigure_time_and_gain_(IntegrationTime time, Gain gain, bool shutdown)
Definition veml7700.cpp:260
sensor::Sensor * actual_integration_time_sensor_
Definition veml7700.h:197
void apply_lux_calculation_(Readings &data)
Definition veml7700.cpp:354
struct esphome::veml7700::VEML7700Component::Readings readings_
sensor::Sensor * fake_infrared_sensor_
Definition veml7700.h:195
void apply_lux_compensation_(Readings &data)
Definition veml7700.cpp:372
sensor::Sensor * ambient_light_sensor_
Definition veml7700.h:191
ErrorCode read_sensor_output_(Readings &data)
Definition veml7700.cpp:281
AlsGain501 gain
mopeka_std_values val[4]
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
T get_prev(const T(&array)[size], const T val)
Definition veml7700.cpp:28
T get_next(const T(&array)[size], const T val)
Definition veml7700.cpp:13
const uint8_t INTEGRATION_TIMES_COUNT
Definition veml7700.h:43
const uint8_t GAINS_COUNT
Definition veml7700.h:33
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:29