This commit is contained in:
ladyada 2016-07-06 18:37:11 -04:00
parent ad6ae59725
commit bb240928e8
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ bool Adafruit_MQTT_Publish::publish(int32_t i) {
}
bool Adafruit_MQTT_Publish::publish(double f, uint8_t precision) {
char payload[40]; // Need to technically hold float max, 39 digits and minus sign.
char payload[41]; // Need to technically hold float max, 39 digits and minus sign.
dtostrf(f, 0, precision, payload);
return mqtt->publish(topic, payload, qos);
}