Skip to content

Instantly share code, notes, and snippets.

@esmarr58
Created October 27, 2017 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esmarr58/7cc49f29c710c9640979880183d78d26 to your computer and use it in GitHub Desktop.
Save esmarr58/7cc49f29c710c9640979880183d78d26 to your computer and use it in GitHub Desktop.
void setup()
{
Serial.begin(57600);
}
void loop(){
Serial.print("Valor del sensor de Humedad:");
Serial.println(analogRead(0));
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment