-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
Click on the Tauri, Vite, and Vue logos to learn more.
-
-
- Recommended IDE setup:
- VS Code
- +
- Volar
- +
- Tauri
- +
- rust-analyzer
-
-
-
-
+
diff --git a/toos-dashboard/src/components/Conf.vue b/toos-dashboard/src/components/Conf.vue
new file mode 100644
index 0000000..7a8bc68
--- /dev/null
+++ b/toos-dashboard/src/components/Conf.vue
@@ -0,0 +1,10 @@
+
+ Frankenstein Test
+
+
+
+
+
+
diff --git a/toos-dashboard/src/components/Greet.vue b/toos-dashboard/src/components/Greet.vue
deleted file mode 100644
index 11d2077..0000000
--- a/toos-dashboard/src/components/Greet.vue
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
- {{ greetMsg }}
-
diff --git a/toos-dashboard/src/components/Main.vue b/toos-dashboard/src/components/Main.vue
new file mode 100644
index 0000000..83caea9
--- /dev/null
+++ b/toos-dashboard/src/components/Main.vue
@@ -0,0 +1,3 @@
+
+ Frankenstein Dashboard
+
diff --git a/toos-dashboard/src/components/Sidebar.vue b/toos-dashboard/src/components/Sidebar.vue
new file mode 100644
index 0000000..a3e2402
--- /dev/null
+++ b/toos-dashboard/src/components/Sidebar.vue
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
diff --git a/toos-dashboard/src/components/Test.vue b/toos-dashboard/src/components/Test.vue
new file mode 100644
index 0000000..c711ded
--- /dev/null
+++ b/toos-dashboard/src/components/Test.vue
@@ -0,0 +1,53 @@
+
+ Frankenstein Test
+
+
+
LED Strip Monster
+
+
+
+
+
+
+
+
+
+
LED Strip Hallway
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/toos-dashboard/src/components/conf/Serial.vue b/toos-dashboard/src/components/conf/Serial.vue
new file mode 100644
index 0000000..f69f4f4
--- /dev/null
+++ b/toos-dashboard/src/components/conf/Serial.vue
@@ -0,0 +1,42 @@
+
+
+
Serial
+
+
+
+
+
+
+
+
Available ports
+
+ {{ port }}
+
+
+
+
+
+
+
diff --git a/toos-dashboard/src/composables/useSerial.js b/toos-dashboard/src/composables/useSerial.js
new file mode 100644
index 0000000..961af58
--- /dev/null
+++ b/toos-dashboard/src/composables/useSerial.js
@@ -0,0 +1,9 @@
+import { invoke } from "@tauri-apps/api/tauri"
+import { useLocalStorage } from '@vueuse/core'
+
+const serialConfig = useLocalStorage('serialConfig', { port: '', baud: 9600 })
+
+export function useSerial(input) {
+ console.log(serialConfig.value)
+ invoke('write_serial', { input: input + ";", portName: serialConfig.value.port, baud: serialConfig.value.baud });
+}
diff --git a/toos-dashboard/src/composables/useStore.js b/toos-dashboard/src/composables/useStore.js
new file mode 100644
index 0000000..252d384
--- /dev/null
+++ b/toos-dashboard/src/composables/useStore.js
@@ -0,0 +1,7 @@
+import { Store } from "tauri-plugin-store-api";
+
+const store = new Store(".settings.dat");
+
+export function useStore() {
+ return store
+}
diff --git a/toos-dashboard/src/main.js b/toos-dashboard/src/main.js
index 5eea099..9b211de 100644
--- a/toos-dashboard/src/main.js
+++ b/toos-dashboard/src/main.js
@@ -1,5 +1,6 @@
import { createApp } from "vue";
import "./styles.css";
import App from "./App.vue";
+import ColorInput from 'vue-color-input'
-createApp(App).mount("#app");
+createApp(App).use(ColorInput).mount("#app");
diff --git a/toos-dashboard/src/styles.css b/toos-dashboard/src/styles.css
index f7de85b..16c0ce9 100644
--- a/toos-dashboard/src/styles.css
+++ b/toos-dashboard/src/styles.css
@@ -1,109 +1,9 @@
-:root {
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
- font-size: 16px;
- line-height: 24px;
- font-weight: 400;
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
- color: #0f0f0f;
- background-color: #f6f6f6;
-
- font-synthesis: none;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- -webkit-text-size-adjust: 100%;
-}
-
-.container {
- margin: 0;
- padding-top: 10vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- text-align: center;
-}
-
-.logo {
- height: 6em;
- padding: 1.5em;
- will-change: filter;
- transition: 0.75s;
-}
-
-.logo.tauri:hover {
- filter: drop-shadow(0 0 2em #24c8db);
-}
-
-.row {
- display: flex;
- justify-content: center;
-}
-
-a {
- font-weight: 500;
- color: #646cff;
- text-decoration: inherit;
-}
-
-a:hover {
- color: #535bf2;
-}
-
-h1 {
- text-align: center;
-}
-
-input,
-button {
- border-radius: 8px;
- border: 1px solid transparent;
- padding: 0.6em 1.2em;
- font-size: 1em;
- font-weight: 500;
- font-family: inherit;
- color: #0f0f0f;
- background-color: #ffffff;
- transition: border-color 0.25s;
- box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
-}
-
-button {
- cursor: pointer;
-}
-
-button:hover {
- border-color: #396cd8;
-}
-button:active {
- border-color: #396cd8;
- background-color: #e8e8e8;
-}
-
-input,
-button {
- outline: none;
-}
-
-#greet-input {
- margin-right: 5px;
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- color: #f6f6f6;
- background-color: #2f2f2f;
- }
-
- a:hover {
- color: #24c8db;
- }
-
- input,
- button {
- color: #ffffff;
- background-color: #0f0f0f98;
- }
- button:active {
- background-color: #0f0f0f69;
+@layer components {
+ input {
+ @apply bg-neutral-700 rounded px-2 text-white
}
}
diff --git a/toos-dashboard/tailwind.config.js b/toos-dashboard/tailwind.config.js
new file mode 100644
index 0000000..7d6aedd
--- /dev/null
+++ b/toos-dashboard/tailwind.config.js
@@ -0,0 +1,12 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+ content: [
+ "./index.html",
+ "./src/**/*.{js,ts,jsx,tsx,vue}",
+ ],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}
+