aboutsummaryrefslogtreecommitdiff
path: root/remote-wheels.ino
diff options
context:
space:
mode:
Diffstat (limited to 'remote-wheels.ino')
-rw-r--r--remote-wheels.ino25
1 files changed, 25 insertions, 0 deletions
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()
+{
+}