void setup() { |
  /* If you need a longer text block to explain what is going on in |
  your source code, you can do that in a multi line comment. |
  For exapmle: |
  this is the setup loop that runs once after startup or whenever |
  the reset button is pressed. |
  |
  This multi line comment ends here. */ |
  |
  // This is a one line comment |
  |
  |
  pinMode(4, OUTPUT);  // GPIO 4 is output |
  pinMode(5, OUTPUT);  // GPIO 5 is output |
  |
  // You can also use the multi line comment markings to deactivate |
  // multiple lines of code. The following two lines are deactivated: |
  |
  /* |
  digitalWrite(4, HIGH); // Turn on LED 4 on startup |
  digitalWrite(5, HIGH); // Turn on LED 5 on startup |
  */ |
} |
  |
void loop() { |
  // put your main code here, to run repeatedly: |
  |
} |