Changes between Version 23 and Version 24 of ControlSystems/Electrical/Training/FallTraining


Ignore:
Timestamp:
Dec 6, 2020, 2:04:20 PM (5 years ago)
Author:
Ryan Nguyen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/Electrical/Training/FallTraining

    v23 v24  
    2222
    2323void setup()\\
    24 
    2524{\\
    26 
    2725  pinMode(2, OUTPUT);\\
    28 
    2926}\\
    30 
    31 
    3227void loop()\\
    33 
    3428{\\
    35 
    3629  digitalWrite(2, HIGH);\\
    37 
    3830  delay(1000); // Wait for 1000 millisecond(s)\\
    39 
    4031  digitalWrite(2, LOW);\\
    41 
    4232  delay(1000); // Wait for 1000 millisecond(s)\\
    43 
    4433}\\
    4534