From 4f2117f49c595657bf5205d6da96fdcb63e8992f Mon Sep 17 00:00:00 2001 From: jantje Date: Wed, 14 Jun 2017 21:55:18 +0200 Subject: [PATCH 1/3] http to https for eclipse.baeyens.it --- io.sloeber.application/introContent.xml | 2 +- io.sloeber.application/plugin.xml | 2 +- io.sloeber.core/src/io/sloeber/core/Activator.java | 8 ++++---- io.sloeber.core/src/io/sloeber/core/api/Defaults.java | 2 +- .../core/listeners/ConfigurationChangeListener.java | 2 +- io.sloeber.core/src/io/sloeber/core/managers/Manager.java | 4 ++-- io.sloeber.feature/feature.xml | 2 +- io.sloeber.ui/plugin.xml | 6 +++--- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/io.sloeber.application/introContent.xml b/io.sloeber.application/introContent.xml index f361ab437..d379c164a 100644 --- a/io.sloeber.application/introContent.xml +++ b/io.sloeber.application/introContent.xml @@ -2,7 +2,7 @@ - + \ No newline at end of file diff --git a/io.sloeber.application/plugin.xml b/io.sloeber.application/plugin.xml index 9ceb4e218..f7a25e3ed 100644 --- a/io.sloeber.application/plugin.xml +++ b/io.sloeber.application/plugin.xml @@ -112,7 +112,7 @@ + value="Sloeber, the Eclipse IDE for Arduino Developers Info: https://eclipse.baeyens.it/ Source: https://github.com/jantje/arduino-eclipse-plugin Binaries: https://eclipse.baeyens.it/download.php Contributors (github users): jantje, brodykenrick, wimjongman, neuweiler, darcade, amorellgarcia, MarceloLimori https://github.com/jantje/arduino-eclipse-plugin/graphs/contributors"> = interval) { + // save the last time you blinked the LED + previousMillis = currentMillis; + + // if the LED is off turn it on and vice-versa: + ledState = !ledState; + + // set the LED with the ledState of the variable: + digitalWrite(ledPin, ledState); + } +} +