/* PROGRAM'S TITLE * --------------- * * Comments * * (copyright notice) 2005 by NAME * * * */ // 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; }