main/Kconfig.projbuild

changeset 0
b74b0e4902c3
child 74
cba50f7529d0
equal deleted inserted replaced
-1:000000000000 0:b74b0e4902c3
1 menu "BrewBoard Configuration"
2
3
4 choice TEMP_SENSORS
5 prompt "Select Temperature Sensors"
6 default TEMP_SENSORS_ONEWIRE
7 help
8 Select to use Real or Fake Temperature Sensors
9
10 config TEMP_SENSORS_ONEWIRE
11 bool "Real Sensors"
12 help
13 Select this to use real Sensors connected on the One-Wire busses
14
15 config TEMP_SENSORS_SIMULATOR
16 bool "Fake Sensors"
17 help
18 Select this to use Fake Sensors for development
19
20 endchoice
21
22
23 config ONE_WIRE_MLT
24 int "OneWire MLT GPIO number"
25 range 0 34
26 default 27
27 depends on TEMP_SENSORS_ONEWIRE
28 help
29 GPIO number (IOxx) to access the DS18B20 for the MLT and Boil kettle.
30
31 Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used.
32
33 GPIOs 35-39 are input-only so cannot be used to drive the One Wire Bus.
34
35 config ONE_WIRE_HLT
36 int "OneWire HLT GPIO number"
37 range 0 34
38 default 26
39 depends on TEMP_SENSORS_ONEWIRE
40 help
41 GPIO number (IOxx) to access the DS18B20 for the HLT kettle.
42
43 Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used.
44
45 GPIOs 35-39 are input-only so cannot be used to drive the One Wire Bus.
46
47 config SSR_MLT_GPIO
48 int "MLT SSR GPIO number"
49 range 0 34
50 default 33
51 help
52 GPIO number (IOxx) to the SSR for the MLT kettle.
53
54 Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to drive a SSR.
55
56 GPIOs 35-39 are input-only so cannot be used as outputs.
57
58 config SSR_HLT_GPIO
59 int "HLT SSR GPIO number"
60 range 0 34
61 default 32
62 help
63 GPIO number (IOxx) to the SSR for the HLT kettle.
64
65 Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to drive a SSR.
66
67 GPIOs 35-39 are input-only so cannot be used as outputs.
68
69 config SSR_PUMP_GPIO
70 int "PUMP SSR GPIO number"
71 range 0 34
72 default 12
73 help
74 GPIO number (IOxx) to the SSR for the Pump.
75
76 Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to drive a SSR.
77
78 GPIOs 35-39 are input-only so cannot be used as outputs.
79
80
81 config BUZZER_GPIO
82 int "Piezo Buzzer GPIO number"
83 range 0 34
84 default 25
85 help
86 GPIO number (IOxx) to the Piezo Buzzer.
87
88 Some GPIOs are used for other purposes (flash connections, etc.) and cannot be used to drive a SSR.
89
90 GPIOs 35-39 are input-only so cannot be used as outputs.
91
92
93 endmenu

mercurial