From ea07da5ab0ab2b947ba2cbed963e6c390200b869 Mon Sep 17 00:00:00 2001 From: Gregg Date: Sun, 11 Dec 2022 14:19:37 -0600 Subject: [PATCH] Update HomeSpan.h Fixed another compiler warning --- src/HomeSpan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HomeSpan.h b/src/HomeSpan.h index bf9e4bc..97c6acc 100644 --- a/src/HomeSpan.h +++ b/src/HomeSpan.h @@ -651,7 +651,7 @@ class SpanCharacteristic{ } if(val < uvGet(minValue) || val > uvGet(maxValue)){ - Serial.printf("\n*** WARNING: Attempt to update Characteristic::%s with setVal(%llg) is out of range [%llg,%llg]. This may cause device to become non-reponsive!\n\n", + Serial.printf("\n*** WARNING: Attempt to update Characteristic::%s with setVal(%g) is out of range [%g,%g]. This may cause device to become non-reponsive!\n\n", hapName,(double)val,uvGet(minValue),uvGet(maxValue)); }