-
Notifications
You must be signed in to change notification settings - Fork 7.2k
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
sensors: add als-pt19 sensor support #85839
Conversation
3aff33c
to
5b582ef
Compare
Could you change the commit message to:
because the only changes are in the binding file? |
5b582ef
to
446f5ce
Compare
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.
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?
fb64438
Sure. I also think all the *_polling samples are generic. |
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 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 = { |
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.
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}; \ |
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.
static struct als_pt19_data als_pt19_data_##inst = {0}; \ | |
static struct als_pt19_data als_pt19_data_##inst; \ |
fb64438
to
d72a439
Compare
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.
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 |
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.
This should probably be sensor-device.yaml
and then an io-channel
property should be added in this file.
b51352b
to
f48df7a
Compare
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.
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 |
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.
: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`_) |
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.
* 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 |
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.
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>
616a9a7
f48df7a
to
616a9a7
Compare
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