-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kconfig.projbuild
48 lines (34 loc) · 1.24 KB
/
Kconfig.projbuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
menu "RGBW channels config"
config CH_RED_GPIO
int "GPIO number for RED channel"
range 0 34
default 18
help
It will be visible for compiler as CONFIG_CHANNEL_RED_GPIO
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used.
GPIOs 35-39 are input-only so cannot be used to drive the relay.
config CH_GREEN_GPIO
int "GPIO number for GREEN channel"
range 0 34
default 19
help
It will be visible for compiler as CONFIG_CHANNEL_GREEN_GPIO
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used.
GPIOs 35-39 are input-only so cannot be used to drive the relay.
config CH_BLUE_GPIO
int "GPIO number for BLUE channel"
range 0 34
default 21
help
It will be visible for compiler as CONFIG_CHANNEL_GREEN_GPIO
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used.
GPIOs 35-39 are input-only so cannot be used to drive the relay.
config CH_WHITE_GPIO
int "GPIO number for WHITE channel"
range 0 34
default 22
help
It will be visible for compiler as CONFIG_CHANNEL_WHITE_GPIO
Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used.
GPIOs 35-39 are input-only so cannot be used to drive the relay.
endmenu