1
0
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:
David A. Mellis
2006-04-26 11:09:43 +00:00
parent 9dbfe53224
commit 260c5d5ee1
39 changed files with 2057 additions and 16 deletions

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