1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-10-12 12:44:53 +03:00

introducing template sketch with empty setup and loop functions. see #1138

This commit is contained in:
Federico Fissore
2012-12-17 11:25:45 +01:00
parent ac66cf7ee2
commit 8e00662cb7
4 changed files with 38 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}