Adds initial support for hm330x dust sensor series. Allows to read PM1, PM2.5 and PM10 concentrations in atmospheric environment. A further update to the driver may add support for also reading "standard" CF1 concentrations by exposing of a custom sensor attribute or a Kconfig option. Tested with Grove - Laser PM2.5 Sensor (HM3301) attached to a Wio Terminal. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
13 lines
343 B
Plaintext
13 lines
343 B
Plaintext
# Seeed Studio HM330x dust particle sensor configuration options
|
|
|
|
# Copyright (c) 2023 Benjamin Cabé <benjamin@zephyrproject.org>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config HM330X
|
|
bool "HM330X dust particle sensor"
|
|
default y
|
|
depends on DT_HAS_SEEED_HM330X_ENABLED
|
|
select I2C
|
|
help
|
|
Enable driver for the HM330X dust particle sensor.
|