aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-03-14 20:05:47 +0100
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2024-03-14 20:05:47 +0100
commit15ccaea1b6ae4796c9698b5be2a798a53ef987a9 (patch)
tree153297582e55d6a8e9a650ae54cc02b540e0d6c6
downloadremote-wheels-15ccaea1b6ae4796c9698b5be2a798a53ef987a9.tar.gz
remote-wheels-15ccaea1b6ae4796c9698b5be2a798a53ef987a9.zip
Initial commit
-rw-r--r--LICENSE0
-rw-r--r--README.md0
-rw-r--r--remote-wheels.ino25
3 files changed, 25 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/LICENSE
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/README.md
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()
+{
+}