mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 15:54:43 +00:00
Add sample application for AMS CCS811 digital gas sensor driver. This application fetches Co2, VOC, Voltage and Current readings from the sensor and prints it on serial console continuously. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
6 lines
160 B
CMake
6 lines
160 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|