void setup() { |
  // put your setup code here, to run once: |
  pinMode(22, OUTPUT); // Set pin 22 to output |
} |
  |
void loop() { |
  // put your main code here, to run repeatedly: |
  |
  digitalWrite(22, HIGH);  // Turn on GPIO number 22 |
  delay(400); // do nothing for 400 milliseconds (0.4s) |
  |
  digitalWrite(22, LOW);  // Turn off GPIO number 22 |
  delay(600); // do nothing for 600 milliseconds (0.6s) |
} |