mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Committing individual examples instead of one .zip
This commit is contained in:
29
build/shared/dist/examples/program_template/program_template.pde
vendored
Normal file
29
build/shared/dist/examples/program_template/program_template.pde
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
/* 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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user