// Entorno para variables
const int Pin1 = 7;
// Entorno de configuración
void setup() {
// put your setup code here, to run once:
pinMode(Pin1,OUTPUT);
}
// entorno de ejecución
void loop() {
// put your main code here, to run repeatedly:
//temperatura = random(0,40);
//humedad = random(0,100);
digitalWrite(Pin1,HIGH);
delay(1000);
digitalWrite(Pin1,LOW);
delay(1000);
}
3.3v
5.0v