From 15ccaea1b6ae4796c9698b5be2a798a53ef987a9 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Thu, 14 Mar 2024 20:05:47 +0100 Subject: Initial commit --- LICENSE | 0 README.md | 0 remote-wheels.ino | 25 +++++++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 remote-wheels.ino diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/remote-wheels.ino b/remote-wheels.ino new file mode 100644 index 0000000..616568d --- /dev/null +++ b/remote-wheels.ino @@ -0,0 +1,25 @@ +String VERSION = "0.0.0-alpha.0"; + +void printBanner() { + Serial.println(" ____ _ __ ___ _ "); + Serial.println("| _ \\ ___ _ __ ___ ___ | |_ ___ \\ \\ / / |__ ___ ___| |___ "); + Serial.println("| |_) / _ \\ '_ ` _ \\ / _ \\| __/ _ \\ \\ \\ /\\ / /| '_ \\ / _ \\/ _ \\ / __|"); + Serial.println("| _ < __/ | | | | | (_) | || __/ \\ V V / | | | | __/ __/ \\__ \\"); + Serial.println("|_| \\_\\___|_| |_| |_|\\___/ \\__\\___| \\_/\\_/ |_| |_|\\___|\\___|_|___/"); + Serial.println("v" + VERSION); + Serial.println(); + Serial.println("Digita `aiuto` per una lista di comandi."); + Serial.println(); +} + +void setup() +{ + delay(3000); + Serial.begin(9600); + printBanner(); +} + + +void loop() +{ +} -- cgit v1.2.3