1# SPDX-License-Identifier: Apache-2.0 2# Copyright 2023 Daniel DeGrasse <daniel@degrasse.com> 3 4source "Kconfig.zephyr" 5 6config LED_ROW_COUNT 7 int "Number of rows in IS31FL3733 matrix" 8 default 12 9 help 10 Set this to match the number of SW LED sink connections 11 wired up to your IS31FL3733 LED driver. The sample will only attempt 12 to drive LEDs within this range. 13 14config LED_COLUMN_COUNT 15 int "Number of columns in IS31FL3733 matrix" 16 default 16 17 help 18 Set this to match the number of CS LED source connections wired up 19 to your IS31FL3733 LED driver. The sample will only attempt to drive 20 LEDs within this range. 21