Comments fixation

This commit is contained in:
miguel5612
2020-03-27 22:55:51 -05:00
parent 3d1bb90e38
commit 5ce115435a
4 changed files with 5 additions and 5 deletions

View File

@ -25,9 +25,9 @@
//Definitions
#define placa "ESP8266" //NodeMcu, WeMos D1, TTGo, ESP32.. etc
#define Voltage_Resolution 3.3
#define pin A0 //Analog input 0 of your arduino
#define pin A0 //Analog input 0 of your ESP Board
#define type "MQ-3" //MQ3
#define ADC_Bit_Resolution 10 // For arduino UNO/MEGA/NANO
#define ADC_Bit_Resolution 10 // For ESP8266
//Declare Sensor
MQUnifiedsensor MQ3(placa, Voltage_Resolution, ADC_Bit_Resolution, pin, type);