2021-02-13 01:21:13 +01:00
|
|
|
; Options
|
|
|
|
; -------
|
|
|
|
; USERMOD_DHT - define this to have this user mod included wled00\usermods_list.cpp
|
|
|
|
; USERMOD_DHT_DHTTYPE - DHT model: 11, 21, 22 for DHT11, DHT21, or DHT22, defaults to 22/DHT22
|
|
|
|
; USERMOD_DHT_PIN - pin to which DTH is connected, defaults to Q2 pin on QuinLed Dig-Uno's board
|
|
|
|
; USERMOD_DHT_CELSIUS - define this to report temperatures in degrees celsious, otherwise fahrenheit will be reported
|
|
|
|
; USERMOD_DHT_MEASUREMENT_INTERVAL - the number of milliseconds between measurements, defaults to 60 seconds
|
|
|
|
; USERMOD_DHT_FIRST_MEASUREMENT_AT - the number of milliseconds after boot to take first measurement, defaults to 90 seconds
|
2022-10-20 01:02:52 +02:00
|
|
|
; USERMOD_DHT_MQTT - publish measurements to the MQTT broker
|
2021-02-13 01:21:13 +01:00
|
|
|
; USERMOD_DHT_STATS - For debug, report delay stats
|
|
|
|
|
|
|
|
[env:d1_mini_usermod_dht_C]
|
|
|
|
extends = env:d1_mini
|
|
|
|
build_flags = ${env:d1_mini.build_flags} -D USERMOD_DHT -D USERMOD_DHT_CELSIUS
|
2022-10-20 01:02:52 +02:00
|
|
|
lib_deps = ${env:d1_mini.lib_deps}
|
2021-02-13 01:21:13 +01:00
|
|
|
https://github.com/alwynallan/DHT_nonblocking
|
|
|
|
|
|
|
|
[env:custom32_LEDPIN_16_usermod_dht_C]
|
|
|
|
extends = env:custom32_LEDPIN_16
|
|
|
|
build_flags = ${env:custom32_LEDPIN_16.build_flags} -D USERMOD_DHT -D USERMOD_DHT_CELSIUS -D USERMOD_DHT_STATS
|
|
|
|
lib_deps = ${env.lib_deps}
|
|
|
|
https://github.com/alwynallan/DHT_nonblocking
|
|
|
|
|