fork download
  1. void setup() {
  2. pinMode(13, INPUT);
  3.  
  4. }
  5.  
  6. void loop() {
  7. digitalWrite(13, HIGH);
  8. delay(1000);
  9. digitalWrite(13, LOW);
  10. delay(1000);
  11. }
  12.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty