DISEÑO CÓDIGO: #include <LiquidCrystal.h> LiquidCrystal lcd(2, 3, 4, 5, 6, 7); int gas; void setup() { lcd.begin (16,2); pinMode (A0,INPUT); } void loop() { gas=analogRead(A0); lcd.setCursor (4,0); lcd.print(gas); delay(400); lcd.clear(); } 46