351cb4bafe
Add sample to demonstrate usage of IS31FL3733 LED using the LED API. This led matrix controller has several custom APIs to expose functionality not available within the standard led API, such as limiting LED current. Signed-off-by: Daniel DeGrasse <daniel@degrasse.com>
9 lines
200 B
CMake
9 lines
200 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(is31fl3733_matrix)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|