/* arduino_program_template.pde Arduino Programming Template A framework for writing Arduino programs BJ Furman Created: 15APR2010 Revised: 15APR2010 */ // 1. Put #include, #define, constant declarations, and global variables here // 2. setup() set pin modes, turn on pullup resistors (if needed), set up and begin serial monitor void setup() { } // 3. loop() put code here that you want to be repeated forever void loop() { } // 4. Put user defined functions here