Fixed reference

This commit is contained in:
miguel5612 2019-05-24 16:15:02 -05:00
parent 11e1e13d3f
commit 669783ddf1
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include "MQUnifiedsensor.h" #include "MQUnifiedsensor.h"
void MQUnifiedsensor::MQSensor(int pin, int type) { MQUnifiedsensor::MQUnifiedsensor(int pin, int type) {
this->_pin = pin; this->_pin = pin;
this->_type = type; //2,3,4,5,6,7,8,9,131,135,303,309 this->_type = type; //2,3,4,5,6,7,8,9,131,135,303,309

View File

@ -12,7 +12,7 @@ class MQUnifiedsensor
/** /**
* Constructor * Constructor
*/ */
void MQSensor(int pin, int type); void MQUnifiedsensor(int pin, int type);
void setR0(double R0); void setR0(double R0);
void setSensorCharacteristics(int MQ[38], String nameLectureReqeuired); void setSensorCharacteristics(int MQ[38], String nameLectureReqeuired);