From 39790af45680900bc28225291e0dde0cb1208e8e Mon Sep 17 00:00:00 2001 From: Julien Le Sech Date: Sat, 27 Aug 2022 10:18:25 +0200 Subject: [PATCH] Initialize dht in ttn-abp-feather-us915-dht22 example --- .../ttn-abp-feather-us915-dht22/ttn-abp-feather-us915-dht22.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/ttn-abp-feather-us915-dht22/ttn-abp-feather-us915-dht22.ino b/examples/ttn-abp-feather-us915-dht22/ttn-abp-feather-us915-dht22.ino index f49c7c4b..e6024d39 100644 --- a/examples/ttn-abp-feather-us915-dht22/ttn-abp-feather-us915-dht22.ino +++ b/examples/ttn-abp-feather-us915-dht22/ttn-abp-feather-us915-dht22.ino @@ -234,6 +234,8 @@ void setup() { Serial.begin(115200); delay(100); Serial.println(F("Starting")); + + dht.begin(); // LMIC init os_init();