Update HomeSpan.h

Fixed another compiler warning
This commit is contained in:
Gregg 2022-12-11 14:19:37 -06:00
parent 5daaf3d0cf
commit ea07da5ab0
1 changed files with 1 additions and 1 deletions

View File

@ -651,7 +651,7 @@ class SpanCharacteristic{
}
if(val < uvGet<T>(minValue) || val > uvGet<T>(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<double>(minValue),uvGet<double>(maxValue));
}