Arduino al Pacinotti Sistemi automatici & sistemi e reti

/* Blink: Switching a LED on and off*/

int led = 13; // integer variable led is declared

/*————————————————————–*/

void setup () {

// the setup() method is executed only once
pinMode(led, OUTPUT); // the led PIN is declared as digital output }

void loop()  // the loop() method is repeated
  digitalWrite(led, HIGH); // switching on the led
  delay(1000); // stopping the program for 1000 milliseconds
  digitalWrite(led, LOW); // switching off the led
  delay(1000); // stopping the program for 1000 milliseconds }

https://padlet.com/pon2019/pensierocomputazionale

http://ilpensierocomputazionale.altervista.org/

ilPensierocomputazionale

56gZKfXs2Pj7