mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-13 23:48:46 +01:00
30 lines
469 B
Plaintext
30 lines
469 B
Plaintext
/* PROGRAM'S TITLE
|
|
* ---------------
|
|
*
|
|
* Comments
|
|
*
|
|
* (copyright notice) 2005 by NAME
|
|
* <http://youraddress.here>
|
|
* <mailto:you@youraddress.here>
|
|
*
|
|
*/
|
|
|
|
// variable declaration
|
|
// type name_of_var = value;
|
|
|
|
// function declaration
|
|
// type name_of_function(type parameters) {
|
|
// code_block;
|
|
// }
|
|
|
|
void setup(void) {
|
|
// initialize inputs/outputs
|
|
// start serial port
|
|
}
|
|
|
|
void loop(void) {
|
|
// program here
|
|
// code_block;
|
|
}
|
|
|