-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
49 lines (37 loc) · 772 Bytes
/
Kconfig
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
49
mainmenu "Sming Switch Configuration Menu"
menu "Pins"
config LED_PIN
int "LED pin"
range 0 35
default 13
config RELAY_PIN
int "Relay pin"
range 0 35
default 12
config DHT_PIN
int "DHT pin"
range 0 35
default 14
config BUTTON_PIN
int "Button Pin"
range 0 35
default 0
endmenu
menu "Frequencies"
config BLINK_FREQ
int "Blink frequency in ms."
range 0 100000
default 1000
config HUMIDITY_FREQ
int "Humidity check frequency in ms."
range 0 100000
default 30000
config RELAY_INITIAL_DELAY
int "Relay initial delay in ms."
range 0 100000
default 60000
config BUTTON_PRESSED_WAIT
int "Wait for pressed button in ms."
range 0 100000
default 70000
endmenu