removed TemplateSketch.ino. Now using BareMinimum.ino

This commit is contained in:
Federico Fissore 2012-12-18 16:47:33 +01:00
parent 8e00662cb7
commit bef59a4de1
3 changed files with 1 additions and 13 deletions

View File

@ -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();
}

View File

@ -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"/>

View File

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