From bef59a4de1cb057a8c6a9826c03812e227e9cc05 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Tue, 18 Dec 2012 16:47:33 +0100 Subject: [PATCH] removed TemplateSketch.ino. Now using BareMinimum.ino --- app/src/processing/app/Base.java | 2 +- build/build.xml | 3 --- build/shared/TemplateSketch.ino | 9 --------- 3 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 build/shared/TemplateSketch.ino diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index ac3616346..36c8120be 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -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(); } diff --git a/build/build.xml b/build/build.xml index 8ac613b3e..dfff2e7ef 100644 --- a/build/build.xml +++ b/build/build.xml @@ -97,9 +97,6 @@ - - - diff --git a/build/shared/TemplateSketch.ino b/build/shared/TemplateSketch.ino deleted file mode 100644 index c9c84ceca..000000000 --- a/build/shared/TemplateSketch.ino +++ /dev/null @@ -1,9 +0,0 @@ -void setup() { - // put your setup code here, to run once: - -} - -void loop() { - // put your main code here, to run repeatedly: - -}