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

sensors: add als-pt19 sensor support #85839

Merged
merged 4 commits into from
Apr 1, 2025

Conversation

dipakgmx
Copy link
Member

@dipakgmx dipakgmx commented Feb 16, 2025

Added ALS-PT19 ambient sensor support.

The following are done in the PR:
Added new binding for the sensor
Added new sensor driver
Added basic sample to measure ambient light readings using the sensor present on the frdm_mcxw71 board.

Signed-off-by: Dipak Shetty shetty.dipak@gmx.com

@dipakgmx dipakgmx changed the title Add als-pt19 sensor support sensors: add als-pt19 sensor support Feb 16, 2025
@dipakgmx dipakgmx force-pushed the feat/add-als-pt19-sensor branch from 3aff33c to 5b582ef Compare February 17, 2025 19:39
@kartben kartben added this to the v4.2.0 milestone Feb 17, 2025
@yasinustunerg
Copy link
Collaborator

drivers: sensor: add everlight ambient light sensor binding
Added new binding for Everlight ALS-PT19 Ambient Light Sensor.

Could you change the commit message to:

'dts: bindings: sensor: ...'

because the only changes are in the binding file?

@dipakgmx dipakgmx force-pushed the feat/add-als-pt19-sensor branch from 5b582ef to 446f5ce Compare February 19, 2025 20:14
yasinustunerg
yasinustunerg previously approved these changes Feb 19, 2025
yperess
yperess previously approved these changes Feb 20, 2025
jilaypandya
jilaypandya previously approved these changes Feb 20, 2025
Copy link
Collaborator

@jeppenodgaard jeppenodgaard left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2nd commit message looks like it repeats 4 times.

Would it be possible to make grove_light a generic light sample and use that instead of creating a new specific sample?

@dipakgmx dipakgmx dismissed stale reviews from jilaypandya, yperess, and yasinustunerg via fb64438 February 24, 2025 21:50
@jeppenodgaard
Copy link
Collaborator

Actually a good idea. I had based the sample on it. I guess, I could do something like how the thermometer sample does it.

Sure. I also think all the *_polling samples are generic.

yperess
yperess previously approved these changes Feb 26, 2025
yasinustunerg
yasinustunerg previously approved these changes Feb 26, 2025
Copy link
Member

@MaureenHelm MaureenHelm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be possible to make grove_light a generic light sample and use that instead of creating a new specific sample?

Please do this

return 0;
}

static const struct sensor_driver_api als_pt19_driver_api = {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
static const struct sensor_driver_api als_pt19_driver_api = {
static DEVICE_API(sensor, als_pt19_driver_api) = {

}

#define ALS_PT19_INST(inst) \
static struct als_pt19_data als_pt19_data_##inst = {0}; \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
static struct als_pt19_data als_pt19_data_##inst = {0}; \
static struct als_pt19_data als_pt19_data_##inst; \

@dipakgmx dipakgmx dismissed stale reviews from yasinustunerg and yperess via d72a439 February 27, 2025 23:42
@dipakgmx dipakgmx force-pushed the feat/add-als-pt19-sensor branch from fb64438 to d72a439 Compare February 27, 2025 23:42
Copy link
Collaborator

@jeppenodgaard jeppenodgaard left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new generic directory should be named light_polling to match the other generic polling samples.
The 3 refactor commits should be merged into one I think.


compatible: "everlight,als-pt19"

include: seeed,grove-light.yaml
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably be sensor-device.yaml and then an io-channel property should be added in this file.

@dipakgmx dipakgmx force-pushed the feat/add-als-pt19-sensor branch 2 times, most recently from b51352b to f48df7a Compare March 1, 2025 00:10
MaureenHelm
MaureenHelm previously approved these changes Mar 25, 2025
jeppenodgaard
jeppenodgaard previously approved these changes Mar 26, 2025
Copy link
Collaborator

@kartben kartben left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some comments on the sample part - thanks!

.. zephyr:code-sample:: grove_light
:name: Grove Light Sensor
.. zephyr:code-sample:: light_sensor_polling
:name: Generic Light Sensor Polling Sample
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
:name: Generic Light Sensor Polling Sample
:name: Generic Light Sensor Polling

@@ -16,23 +16,21 @@ Requirements
To use this sample, the following hardware is required:

* A board with ADC support
* `Grove Light Sensor`_
* `Grove Base Shield`_
* A supported light sensor (e.g., `Grove Light Sensor`_)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* A supported light sensor (e.g., `Grove Light Sensor`_)
* A supported light sensor (e.g., `Grove Light Sensor`_), available as ``light-sensor`` Devicetree
alias.

# Copyright (c) 2025 Dipak Shetty <shetty.dipak@gmx.com>
# SPDX-License-Identifier: Apache-2.0

description: Everlight Ambient Light Sensor
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: Everlight Ambient Light Sensor
description: Everlight ALS-PT19 Ambient Light Sensor

Added new binding for Everlight ALS-PT19 Ambient Light Sensor.

Signed-off-by: Dipak Shetty <shetty.dipak@gmx.com>
Adds driver for Everlight ALS-PT19 Ambient Light Sensor.

Signed-off-by: Dipak Shetty <shetty.dipak@gmx.com>
Moved the grove light sensor into a generic light sensor sample.
Replaced board specific node name for light sensor with an alias.
Refactored project name to reflect generic light sensor.

Signed-off-by: Dipak Shetty <shetty.dipak@gmx.com>
Sample extended to support the everlight light sensor on the
frdm_mcxw71 board.

Signed-off-by: Dipak Shetty <shetty.dipak@gmx.com>
@dipakgmx dipakgmx dismissed stale reviews from jeppenodgaard and MaureenHelm via 616a9a7 March 26, 2025 17:55
@dipakgmx dipakgmx force-pushed the feat/add-als-pt19-sensor branch from f48df7a to 616a9a7 Compare March 26, 2025 17:55
@kartben kartben merged commit 033679b into zephyrproject-rtos:main Apr 1, 2025
25 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants