-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig.projbuild
67 lines (52 loc) · 1.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
menu "WIFI Configuration"
config WIFI_SSID
string "WiFi SSID"
default "myssid"
help
SSID (network name) for the example to connect to.
config WIFI_PASSWORD
string "WiFi Password"
default "mypassword"
help
WiFi password (WPA or WPA2) for the example to use.
endmenu
menu "MQTT Configuration"
config MQTT_HOST
string "MQTT Host"
help
MQTT hostname
config MQTT_PORT
int "MQTT Port"
default 1883
help
MQTT port (default 1883 unencrypted, 8883 encrypted)
config MQTT_USERNAME
string "MQTT username"
default ""
help
MQTT username
config MQTT_PASSWORD
string "MQTT Password"
default ""
help
MQTT password
config MQTT_SALT_LEVEL_TOPIC
string "MQTT Salt Level Topic"
help
Topic to use when sending the salt level
endmenu
menu "Salt level "
config SENSOR_READ_INTERVAL
int "Sensor Read Interval"
default 120
help
Sensor read interval in seconds
config SENSOR_FULL_LVL_INCHES
int "Sensor Full Level Inches"
help
The level in inches when the tank is full
config SENSOR_EMPTY_LVL_INCHES
int "Sensor Empty Level Inches"
help
The level in inches when the tank is empty
endmenu