Paso 4: Ejemplo de código
@ Código para interfaces de Alcohol Sensor de Gas MQ-3 con Arduino
@ Código por Daniel Spillere Andrade y Daniel Amato Zabotti
@ danieI / danieIzabotti
const int analogPin = 0;
const int ledCount = 10;
int ledPins [] = {10,9,8,7,6,5,4,3,2,1};
void setup() {}
para (int thisLed = 0; thisLed < ledCount; thisLed ++) {}
pinMode (ledPins [thisLed], salida);
}}
void loop() {}
int sensorReading = analogRead(analogPin);
int ledLevel = mapa (sensorReading, 500, 1023, 0, ledCount);
para (int thisLed = 0; thisLed < ledCount; thisLed ++) {}
Si (thisLed < ledLevel) {}
digitalWrite (ledPins [thisLed], HIGH);
}
Else {}
digitalWrite (ledPins [thisLed], LOW);
}
}
}