mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
removed TemplateSketch.ino. Now using BareMinimum.ino
This commit is contained in:
parent
8e00662cb7
commit
bef59a4de1
@ -655,7 +655,7 @@ public class Base {
|
||||
if (!newbieFile.createNewFile()) {
|
||||
throw new IOException();
|
||||
}
|
||||
FileUtils.copyFile(new File(System.getProperty("user.dir"), "TemplateSketch.ino"), newbieFile);
|
||||
FileUtils.copyFile(new File(System.getProperty("user.dir"), "examples/01.Basics/BareMinimum/BareMinimum.ino"), newbieFile);
|
||||
return newbieFile.getAbsolutePath();
|
||||
}
|
||||
|
||||
|
@ -97,9 +97,6 @@
|
||||
<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"/>
|
||||
|
||||
|
@ -1,9 +0,0 @@
|
||||
void setup() {
|
||||
// put your setup code here, to run once:
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// put your main code here, to run repeatedly:
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user