1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-13 23:48:46 +01:00
Arduino/build/shared/dist/examples/program_template/program_template.pde
2006-04-26 11:09:43 +00:00

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;
}