From 9f41530cda5d4f7c27714c39d848feda36a418f1 Mon Sep 17 00:00:00 2001 From: PsySc0rpi0n Date: Wed, 7 Sep 2022 22:23:27 +0100 Subject: [PATCH] Update MQUnifiedsensor.cpp Change the `_type` array size from 6 to 7 so that it can display sensor name's with 6 characters or more. --- src/MQUnifiedsensor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MQUnifiedsensor.cpp b/src/MQUnifiedsensor.cpp index 838521e..089bad9 100644 --- a/src/MQUnifiedsensor.cpp +++ b/src/MQUnifiedsensor.cpp @@ -3,7 +3,7 @@ MQUnifiedsensor::MQUnifiedsensor(String Placa, float Voltage_Resolution, int ADC_Bit_Resolution, int pin, String type) { this->_pin = pin; Placa.toCharArray(this->_placa, 20); - type.toCharArray(this->_type, 6); + type.toCharArray(this->_type, 7); //this->_type = type; //MQ-2, MQ-3 ... MQ-309A //this->_placa = Placa; this-> _VOLT_RESOLUTION = Voltage_Resolution; @@ -11,7 +11,7 @@ MQUnifiedsensor::MQUnifiedsensor(String Placa, float Voltage_Resolution, int ADC } MQUnifiedsensor::MQUnifiedsensor(String Placa, String type) { Placa.toCharArray(this->_placa, 20); - type.toCharArray(this->_type, 6); + type.toCharArray(this->_type, 7); } void MQUnifiedsensor::init() { @@ -233,4 +233,4 @@ float MQUnifiedsensor::getRS() float MQUnifiedsensor::stringTofloat(String & str) { return atof( str.c_str() ); -} \ No newline at end of file +}