mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-03 19:53:32 +00:00
e3166508a1
ScioSense ENS160 is a digital metal oxide multi-gas sensor, designed for indoor air quality monitoring. The driver supports readings of CO2 and VOC, and can be accessed via both SPI and I2C. Datasheet: https://www.sciosense.com/wp-content/uploads/2023/12/ENS160-Datasheet.pdf Signed-off-by: Gustavo Silva <gustavograzs@gmail.com> Link: https://lore.kernel.org/r/20240604225747.7212-4-gustavograzs@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
8 lines
178 B
C
8 lines
178 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ENS160_H_
|
|
#define ENS160_H_
|
|
|
|
int devm_ens160_core_probe(struct device *dev, struct regmap *regmap,
|
|
const char *name);
|
|
#endif
|