From 6fd6e177712d39e6d85d1b307669da32473ef07c Mon Sep 17 00:00:00 2001 From: llschall Date: Fri, 10 Apr 2026 23:04:49 +0200 Subject: [PATCH 1/4] [Build] Bump to version 0.4.1 --- examples/demo_led/demo_led.ino | 2 +- examples/demo_led_esp32_bt/demo_led_esp32_bt.ino | 2 ++ library.properties | 2 +- src/Ardwloop.h | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/demo_led/demo_led.ino b/examples/demo_led/demo_led.ino index 8652d37..0827f0e 100644 --- a/examples/demo_led/demo_led.ino +++ b/examples/demo_led/demo_led.ino @@ -1,7 +1,7 @@ /* * Welcome to the Ardwloop Demo ! * - * Featuring Ardwloop 0.4.0 + * Featuring Ardwloop 0.4.1 * * More setup instructions are available in * https://llschall.github.io/ardwloop/demo diff --git a/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino b/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino index 3060b2f..7eea5f3 100644 --- a/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino +++ b/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino @@ -2,6 +2,8 @@ * Welcome to the Ardwloop Demo, * customized for board based on ESP32 and bluetooth communication. * + * Featuring Ardwloop 0.4.1 + * * Make sure you selected an ESP32 board in your IDE * before trying to compile this. */ diff --git a/library.properties b/library.properties index e1ef853..ffcf30d 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Ardwloop -version=0.4.0 +version=0.4.1 author=Laurent Schall maintainer=Laurent Schall sentence=A library to ease controlling an Arduino program from a Java or Kotlin application. diff --git a/src/Ardwloop.h b/src/Ardwloop.h index d12c8c5..b4e6999 100644 --- a/src/Ardwloop.h +++ b/src/Ardwloop.h @@ -2,7 +2,7 @@ * Adrwloop.h - Entry point of the ardwloop API for the Arduino side * See https://llschall.github.io/ardwloop * - * Version 0.4.0 + * Version 0.4.1 */ #ifndef ardwloop_h From fb6be631c5d446e99b8134880a843255dfa61db8 Mon Sep 17 00:00:00 2001 From: llschall Date: Sat, 8 Aug 2026 18:32:20 +0200 Subject: [PATCH 2/4] [Doc] Read me --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 47a8a67..e1bda71 100644 --- a/README.md +++ b/README.md @@ -1 +1,2 @@ -The Arduino part of the https://github.com/llschall/ardwloop repository. +**ardwloop** synchronizes the loop of your Arduino program with the loop of your Java program, and enables both to +exchange integer values that you can use for any purpose in your project \ No newline at end of file From 32d20077b888be7df19d77393fea5b0ea315b1b2 Mon Sep 17 00:00:00 2001 From: llschall Date: Sat, 8 Aug 2026 18:35:47 +0200 Subject: [PATCH 3/4] [Doc] Read me --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e1bda71..47a8a67 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -**ardwloop** synchronizes the loop of your Arduino program with the loop of your Java program, and enables both to -exchange integer values that you can use for any purpose in your project \ No newline at end of file +The Arduino part of the https://github.com/llschall/ardwloop repository. From e36e421e9ab8b21e93f184bc3244e92d3a9eff88 Mon Sep 17 00:00:00 2001 From: llschall Date: Sat, 8 Aug 2026 19:01:43 +0200 Subject: [PATCH 4/4] [Release] Bump to 0.4.2 --- build.gradle | 2 +- ino/examples/demo_led/demo_led.ino | 2 +- ino/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino | 2 +- ino/library.properties | 2 +- ino/src/Ardwloop.h | 2 +- src/main/java/org/llschall/ardwloop/ArdwloopStarter.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 990c61d..d361757 100644 --- a/build.gradle +++ b/build.gradle @@ -49,7 +49,7 @@ publishing { from components.java groupId = 'io.github.llschall' artifactId = 'ardwloop' - version = '0.4.1' + version = '0.4.2' pom { name = 'ardwloop' description = 'ardwloop takes care of exchanging a matrix of data between your Java (or Kotlin) program and its matching Arduino program.' diff --git a/ino/examples/demo_led/demo_led.ino b/ino/examples/demo_led/demo_led.ino index 0827f0e..c21e29b 100644 --- a/ino/examples/demo_led/demo_led.ino +++ b/ino/examples/demo_led/demo_led.ino @@ -1,7 +1,7 @@ /* * Welcome to the Ardwloop Demo ! * - * Featuring Ardwloop 0.4.1 + * Featuring Ardwloop 0.4.2 * * More setup instructions are available in * https://llschall.github.io/ardwloop/demo diff --git a/ino/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino b/ino/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino index 7eea5f3..af29308 100644 --- a/ino/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino +++ b/ino/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino @@ -2,7 +2,7 @@ * Welcome to the Ardwloop Demo, * customized for board based on ESP32 and bluetooth communication. * - * Featuring Ardwloop 0.4.1 + * Featuring Ardwloop 0.4.2 * * Make sure you selected an ESP32 board in your IDE * before trying to compile this. diff --git a/ino/library.properties b/ino/library.properties index ffcf30d..b966389 100644 --- a/ino/library.properties +++ b/ino/library.properties @@ -1,5 +1,5 @@ name=Ardwloop -version=0.4.1 +version=0.4.2 author=Laurent Schall maintainer=Laurent Schall sentence=A library to ease controlling an Arduino program from a Java or Kotlin application. diff --git a/ino/src/Ardwloop.h b/ino/src/Ardwloop.h index b4e6999..a56192f 100644 --- a/ino/src/Ardwloop.h +++ b/ino/src/Ardwloop.h @@ -2,7 +2,7 @@ * Adrwloop.h - Entry point of the ardwloop API for the Arduino side * See https://llschall.github.io/ardwloop * - * Version 0.4.1 + * Version 0.4.2 */ #ifndef ardwloop_h diff --git a/src/main/java/org/llschall/ardwloop/ArdwloopStarter.java b/src/main/java/org/llschall/ardwloop/ArdwloopStarter.java index 2687148..921c28a 100644 --- a/src/main/java/org/llschall/ardwloop/ArdwloopStarter.java +++ b/src/main/java/org/llschall/ardwloop/ArdwloopStarter.java @@ -22,7 +22,7 @@ public class ArdwloopStarter { /** * The version of the Ardwloop library */ - public static final String VERSION = "0.4.1"; + public static final String VERSION = "0.4.2"; /** * An integer that might vary with the snapshot