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:
@@ -97,6 +97,9 @@
|
||||
<fileset dir="shared/examples" />
|
||||
</copy>
|
||||
|
||||
<!-- copy shared template -->
|
||||
<copy file="shared/TemplateSketch.ino" todir="${target.path}/" />
|
||||
|
||||
<!-- Unzip documentation -->
|
||||
<unzip dest="${target.path}" src="shared/reference.zip" overwrite="false"/>
|
||||
|
||||
|
9
build/shared/TemplateSketch.ino
Normal file
9
build/shared/TemplateSketch.ino
Normal 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:
|
||||
|
||||
}
|
Reference in New Issue
Block a user