1# Copyright (c) 2025 Antmicro <www.antmicro.com>
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "SHT4X sample application"
5
6config APP_USE_HEATER
7	bool "Use the Heater on the SHT4X"
8	help
9	  Maximum duty cycle for using the heater is 5%
10
11config APP_HEATER_HUMIDITY_THRESH
12	int "RH [%] threshold above which the heater will be activated"
13	range 0 99
14	default 65
15	depends on APP_USE_HEATER
16
17config APP_HEATER_PULSE_POWER
18	int "Heater Power Setting"
19	range 0 2
20	default 2
21	depends on APP_USE_HEATER
22	help
23	  0 -> High power heater pulse -> ~200 mW  @3.3V
24	  1 -> Medium power heater pulse -> ~110 mW  @3.3V
25	  2 -> Low power heater pulse -> ~20 mW  @3.3V
26
27config APP_HEATER_PULSE_DURATION_LONG
28	bool "Use long pulse duration Heater setting"
29	default y
30	depends on APP_USE_HEATER
31	help
32	  Say 'Y' if you want to use the long pulse duration setting. This sets the pulse time to
33	  1.1s. Say 'N' if you want to use the short pulse duration setting, which sets the pulse
34	  time to 0.11s.
35
36source "Kconfig.zephyr"
37