Skip to content
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

Merged
merged 14 commits into from
Mar 27, 2025

Conversation

MikaFromTheRoof
Copy link
Contributor

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 with 10^(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 to esp-zigbee-sdk/components/esp-zigbee-lib/include/ha/esp_zigbee_ha_standard.h if possible

Related links

Source for lux calculation formular

@CLAassistant
Copy link

CLAassistant commented Mar 24, 2025

CLA assistant check
All committers have signed the CLA.

Copy link
Contributor

github-actions bot commented Mar 24, 2025

Warnings
⚠️

Some issues found for the commit messages in this PR:

  • the commit message "Add comment for macro":
    • summary looks empty
    • type/action looks empty
  • the commit message "Added Zigbee light sensor":
    • summary looks empty
    • type/action looks empty
  • the commit message "Some last corrections":
    • summary looks empty
    • type/action looks empty
  • the commit message "Update Zigbee_Illuminance_Sensor.ino":
    • summary looks empty
    • type/action looks empty
  • the commit message "Update keywords.txt":
    • summary looks empty
    • type/action looks empty

Please fix these commit messages - here are some basic tips:

  • follow Conventional Commits style
  • correct format of commit message should be: <type/action>(<scope/component>): <summary>, for example fix(esp32): Fixed startup timeout issue
  • allowed types are: change,ci,docs,feat,fix,refactor,remove,revert,test
  • sufficiently descriptive message summary should be between 10 to 72 characters and start with upper case letter
  • avoid Jira references in commit messages (unavailable/irrelevant for our customers)

TIP: Install pre-commit hooks and run this check when committing (uses the Conventional Precommit Linter).

👋 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 ...


This automated output is generated by the PR linter DangerJS, which checks if your Pull Request meets the project's requirements and helps you fix potential issues.

DangerJS is triggered with each push event to a Pull Request and modify the contents of this comment.

Please consider the following:
- Danger mainly focuses on the PR structure and formatting and can't understand the meaning behind your code or changes.
- Danger is not a substitute for human code reviews; it's still important to request a code review from your colleagues.
- Resolve all warnings (⚠️ ) before requesting a review from human reviewers - they will appreciate it.
- To manually retry these Danger checks, please navigate to the Actions tab and re-run last Danger workflow.

Review and merge process you can expect ...


We do welcome contributions in the form of bug reports, feature requests and pull requests.

1. An internal issue has been created for the PR, we assign it to the relevant engineer.
2. They review the PR and either approve it or ask you for changes or clarifications.
3. Once the GitHub PR is approved we do the final review, collect approvals from core owners and make sure all the automated tests are passing.
- At this point we may do some adjustments to the proposed change, or extend it by adding tests or documentation.
4. If the change is approved and passes the tests it is merged into the default branch.

Generated by 🚫 dangerJS against d377a17

@MikaFromTheRoof MikaFromTheRoof changed the title Added new light sensor endpoint for Zigbee library feat: added new light sensor endpoint for Zigbee library Mar 24, 2025
@MikaFromTheRoof MikaFromTheRoof changed the title feat: added new light sensor endpoint for Zigbee library Added new light sensor endpoint for Zigbee library Mar 24, 2025
@P-R-O-C-H-Y P-R-O-C-H-Y added the Area: Zigbee Issues and Feature Request about Zigbee label Mar 25, 2025
@P-R-O-C-H-Y P-R-O-C-H-Y self-requested a review March 25, 2025 08:11
@P-R-O-C-H-Y P-R-O-C-H-Y changed the title Added new light sensor endpoint for Zigbee library feat(zigbee): Add Light sensor endpoint Mar 25, 2025
Copy link
Member

@P-R-O-C-H-Y P-R-O-C-H-Y left a 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.

@MikaFromTheRoof
Copy link
Contributor Author

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!

@P-R-O-C-H-Y P-R-O-C-H-Y changed the title feat(zigbee): Add Light sensor endpoint feat(zigbee): Add Illuminance sensor endpoint Mar 26, 2025
@P-R-O-C-H-Y P-R-O-C-H-Y self-assigned this Mar 26, 2025
Copy link
Member

@P-R-O-C-H-Y P-R-O-C-H-Y left a 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

@P-R-O-C-H-Y P-R-O-C-H-Y added the Status: Review needed Issue or PR is awaiting review label Mar 26, 2025
@P-R-O-C-H-Y P-R-O-C-H-Y added this to the 3.2.0 milestone Mar 26, 2025
@P-R-O-C-H-Y P-R-O-C-H-Y requested a review from me-no-dev March 26, 2025 08:18
Copy link
Contributor

github-actions bot commented Mar 26, 2025

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.

MemoryFLASH [bytes]FLASH [%]RAM [bytes]RAM [%]
TargetDECINCDECINCDECINCDECINC
ESP32S30⚠️ +2240.00⚠️ +0.03000.000.00
ESP32S20⚠️ +2240.00⚠️ +0.04000.000.00
ESP32C3000.000.00000.000.00
ESP32C6000.000.00000.000.00
ESP32H2000.000.00000.000.00
ESP320⚠️ +2240.00⚠️ +0.04000.000.00
Click to expand the detailed deltas report [usage change in BYTES]
TargetESP32S3ESP32S2ESP32C3ESP32C6ESP32H2ESP32
ExampleFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAMFLASHRAM
libraries/Zigbee/examples/Zigbee_Color_Dimmer_Switch⚠️ +2240⚠️ +2240000000⚠️ +2240
libraries/Zigbee/examples/Zigbee_Gateway⚠️ +2240⚠️ +224000----⚠️ +2240
libraries/Zigbee/examples/Zigbee_On_Off_Switch⚠️ +2240⚠️ +2240000000⚠️ +2240
libraries/Zigbee/examples/Zigbee_Range_Extender⚠️ +2240⚠️ +2240000000⚠️ +2240
libraries/Zigbee/examples/Zigbee_Thermostat⚠️ +2240⚠️ +2240000000⚠️ +2240
libraries/Zigbee/examples/Zigbee_Analog_Input_Output------0000--
libraries/Zigbee/examples/Zigbee_CarbonDioxide_Sensor------0000--
libraries/Zigbee/examples/Zigbee_Color_Dimmable_Light------0000--
libraries/Zigbee/examples/Zigbee_Contact_Switch------0000--
libraries/Zigbee/examples/Zigbee_Dimmable_Light------0000--
libraries/Zigbee/examples/Zigbee_Illuminance_Sensor------------
libraries/Zigbee/examples/Zigbee_OTA_Client------0000--
libraries/Zigbee/examples/Zigbee_Occupancy_Sensor------0000--
libraries/Zigbee/examples/Zigbee_On_Off_Light------0000--
libraries/Zigbee/examples/Zigbee_Pressure_Flow_Sensor------0000--
libraries/Zigbee/examples/Zigbee_Scan_Networks------0000--
libraries/Zigbee/examples/Zigbee_Temp_Hum_Sensor_Sleepy------0000--
libraries/Zigbee/examples/Zigbee_Temperature_Sensor------0000--
libraries/Zigbee/examples/Zigbee_Vibration_Sensor------0000--
libraries/Zigbee/examples/Zigbee_Wind_Speed_Sensor------0000--
libraries/Zigbee/examples/Zigbee_Window_Covering------0000--

Copy link
Contributor

github-actions bot commented Mar 26, 2025

Test Results

 76 files   76 suites   12m 45s ⏱️
 38 tests  38 ✅ 0 💤 0 ❌
241 runs  241 ✅ 0 💤 0 ❌

Results for commit d377a17.

♻️ This comment has been updated with latest results.

@P-R-O-C-H-Y P-R-O-C-H-Y removed the Status: Review needed Issue or PR is awaiting review label Mar 26, 2025
@P-R-O-C-H-Y P-R-O-C-H-Y added the Status: Pending Merge Pull Request is ready to be merged label Mar 26, 2025
@SuGlider SuGlider self-requested a review March 27, 2025 03:01
// 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);
Copy link
Collaborator

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);
Copy link
Collaborator

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 ... ?

Copy link
Collaborator

@SuGlider SuGlider left a 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.

@me-no-dev me-no-dev merged commit e37435c into espressif:master Mar 27, 2025
56 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: Zigbee Issues and Feature Request about Zigbee Status: Pending Merge Pull Request is ready to be merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants