From e819d5d26117def36f964a93451cc8d146b7dc3a Mon Sep 17 00:00:00 2001 From: Geoff Davis Date: Tue, 2 Jun 2020 20:37:10 -0700 Subject: [PATCH] Fix temperature step data type. Should be a float, not a uint8_t. --- espmhp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/espmhp.h b/espmhp.h index ece2aa2..4390f2b 100644 --- a/espmhp.h +++ b/espmhp.h @@ -33,7 +33,7 @@ static const uint8_t ESPMHP_MIN_TEMPERATURE = 16; // degrees C, // defined by hardware static const uint8_t ESPMHP_MAX_TEMPERATURE = 31; // degrees C, //defined by hardware -static const uint8_t ESPMHP_TEMPERATURE_STEP = 0.5; // temperature setting step, +static const float ESPMHP_TEMPERATURE_STEP = 0.5; // temperature setting step, // in degrees C