-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(zigbee): Add Illuminance sensor endpoint #11171
Conversation
👋 Hello MikaFromTheRoof, we appreciate your contribution to this project! 📘 Please review the project's Contributions Guide for key guidelines on code, documentation, testing, and more. 🖊️ Please also make sure you have read and signed the Contributor License Agreement for this project. Click to see more instructions ...
Review and merge process you can expect ...
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @MikaFromTheRoof Thank you for bringing up this PR, making the illuminance sensor available for everyone :)
We suggest to change the name of the class from ZigbeeLightSensor
to ZigbeeIlluminanceSensor
, as it's more detailed and you can easily read what it does, as also the clusters are Illuminance. So please change the naming if you agree.
Done! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have took over to do some smaller updates and tested with ZHA. Works well :)
We can go for merge
Memory usage test (comparing PR against master branch)The table below shows the summary of memory usage change (decrease - increase) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
Test Results 76 files 76 suites 12m 45s ⏱️ Results for commit d377a17. ♻️ This comment has been updated with latest results. |
// conversion into zigbee raw illuminance value (typically between 0 in darkness and 50000 in direct sunlight) | ||
// depends on the value range of the raw analog sensor values and will need calibration for correct lux values | ||
// for demonstration purpose map the 12-bit ADC value (0-4095) to Zigbee illuminance range (0-50000) | ||
int lsens_illuminance_raw = map(lsens_analog_raw, 0, 4095, 0, 50000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would it be nicer to set the 50,000 limit as a #define ...
- it is used latter in the code.
zbIlluminanceSensor.setPowerSource(ZB_POWER_SOURCE_MAINS); | ||
|
||
// Set minimum and maximum for raw illuminance value (0 min and 50000 max equals to 0 lux - 100,000 lux) | ||
zbIlluminanceSensor.setMinMaxValue(0, 50000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would it be nicer to set the 50,000 limit as a #define ...
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor detail about the example.
Description of Change
I added a new light sensor endpoint for the zigbee library.
I already informed P-R-O-C-H-Y that I will be creating a pull request for this.
Tests scenarios
I have tested my Pull Request on Arduino-esp32 core v3.2.0-RC2 with a ESP32-C6 board (DFRobot Beetle ESP32-C6) and with Home Assistant and Zigbee2MQTT plugin. The tested code example is part of the pull request.
Formular for calculating lux from raw illuminance
Please check the formular for calculating the lux value from raw illuminance. Typically it should be
10^(lsens_value/10000)-1
as I found on an issue regarding Zigbee2MQTT (see link below). Strangely enough for me testing the code with Zigbee2MQTT, the plugin seems to rather calculate the lux value with10^(lsens_value/10000)
, so without the "-1" at the end...New macro for default light sensor config
I added a new macro for the default light sensor config at the beginning of
ZigbeeLightSensor.h
. This works as it is, but the macro rather be added toesp-zigbee-sdk/components/esp-zigbee-lib/include/ha/esp_zigbee_ha_standard.h
if possibleRelated links
Source for lux calculation formular