#define GAS_PIN 34
void setup() {
Serial.begin(115200);
}
void loop() {
int gasValue = analogRead(GAS_PIN);
Serial.print("Gas Value: ");
Serial.println(gasValue);
delay(500);
}
#define GAS_PIN 34
void setup() {
Serial.begin(115200);
}
void loop() {
int gasValue = analogRead(GAS_PIN);
Serial.print("Gas Value: ");
Serial.println(gasValue);
delay(500);
}