Compare commits
38 Commits
cb2eb9dee3
...
main
Author | SHA1 | Date | |
---|---|---|---|
17a3b82d5c | |||
8c087f452e | |||
23431457b7 | |||
3f6ea3a2f1 | |||
ef0c80d099 | |||
6af55a17bf | |||
1a760adcfd | |||
ff7f0f2e96 | |||
b13e97ba6a | |||
3c2053dc85 | |||
13b669ce22 | |||
5ed82d0fca | |||
d713becd68 | |||
9670bed8e8 | |||
ce09220708 | |||
422f4c68c6 | |||
078683b5b2 | |||
dc78ea7426 | |||
81edabee6e | |||
c8bb08343e | |||
d0d01fafbc | |||
6ca8176993 | |||
119d287865 | |||
113834ab26 | |||
b885ae8acb | |||
9f9c4ff508 | |||
c234a1d1f9 | |||
f0558b0ac9 | |||
4792be9ab3 | |||
8cb9217548 | |||
477e76d14c | |||
5256bbdd7b | |||
5b6a6413f4 | |||
d2872ef3fd | |||
634d1c17e4 | |||
e9e2650596 | |||
4ae2e63add | |||
bac28c30ad |
37
.gitea/workflows/workflow.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
name: 'publish'
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
publish-tauri:
|
||||
permissions:
|
||||
contents: write
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [ubuntu-20.04]
|
||||
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: setup node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
- name: install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: install dependencies (ubuntu only)
|
||||
if: matrix.platform == 'ubuntu-20.04'
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf libasound2-dev libudev-dev
|
||||
- name: install frontend dependencies
|
||||
run: npm install # change this to npm or pnpm depending on which one you use
|
||||
working-directory: ./toos-dashboard
|
||||
- run: npm run tauri build
|
||||
working-directory: ./toos-dashboard
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: toos-dashboard.AppImage
|
||||
path: toos-dashboard/src-tauri/target/release/bundle/appimage/*.AppImage
|
||||
|
@@ -1,6 +1,167 @@
|
||||
#include <Adafruit_NeoPixel.h>
|
||||
|
||||
const int redPin = 4;
|
||||
const int greenPin = 5;
|
||||
const int bluePin = 13;
|
||||
const int whitePin = 14;
|
||||
const int btnPin = 18;
|
||||
|
||||
#define PIN_WS2812B 27
|
||||
#define NUM_PIXELS 68
|
||||
|
||||
Adafruit_NeoPixel ws2812b(NUM_PIXELS, PIN_WS2812B, NEO_GRB + NEO_KHZ800);
|
||||
|
||||
String inputCommand = "";
|
||||
String inputColor = "";
|
||||
|
||||
int buttonState = 0;
|
||||
int lastButtonState = LOW;
|
||||
|
||||
unsigned long lastDebounceTime = 0; // the last time the output pin was toggled
|
||||
unsigned long debounceDelay = 50;
|
||||
|
||||
void setup() {
|
||||
ws2812b.begin();
|
||||
Serial.begin(9600);
|
||||
|
||||
pinMode(redPin, OUTPUT);
|
||||
pinMode(greenPin, OUTPUT);
|
||||
pinMode(bluePin, OUTPUT);
|
||||
pinMode(whitePin, OUTPUT);
|
||||
pinMode(btnPin, INPUT);
|
||||
|
||||
analogWrite(redPin, 0);
|
||||
analogWrite(greenPin, 0);
|
||||
analogWrite(bluePin, 0);
|
||||
analogWrite(whitePin, 0);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// Check if there is serial data available
|
||||
if (Serial.available() > 0) {
|
||||
char receivedChar = Serial.read();
|
||||
|
||||
// Check if the received character is not a newline character
|
||||
if (receivedChar != ';') {
|
||||
inputCommand += receivedChar;
|
||||
} else {
|
||||
// A newline character indicates the end of the command
|
||||
if (inputCommand.startsWith("SET_STRIP_COLOR:")) {
|
||||
|
||||
inputColor = inputCommand.substring(16); // Extract the color value after ":"
|
||||
setStripColor(inputColor);
|
||||
} else if (inputCommand.startsWith("SET_LIGHT:")) {
|
||||
int brightnessValue = inputCommand.substring(10).toInt();
|
||||
setLight(brightnessValue);
|
||||
} else if (inputCommand.startsWith("SET_LED:")) {
|
||||
// Command format: SET_LED:index,R,G,B (e.g., SET_LED:5,255,0,0 for setting LED #5 to red)
|
||||
setIndividualLED(inputCommand);
|
||||
} else if (inputCommand.startsWith("SET_LED_COLOR:")) {
|
||||
// Command format: SET_LED:index,R,G,B (e.g., SET_LED:5,255,0,0 for setting LED #5 to red)
|
||||
setLedColor(inputCommand);
|
||||
} else if (inputCommand.startsWith("SET_LED_OFF")) {
|
||||
// Command format: SET_LED:index,R,G,B (e.g., SET_LED:5,255,0,0 for setting LED #5 to red)
|
||||
ws2812b.clear();
|
||||
ws2812b.show();
|
||||
}
|
||||
inputCommand = ""; // Clear the inputCommand string
|
||||
inputColor = ""; // Clear the inputColor string
|
||||
}
|
||||
}
|
||||
|
||||
int reading = digitalRead(btnPin);
|
||||
|
||||
if (reading != lastButtonState) {
|
||||
// reset the debouncing timer
|
||||
lastDebounceTime = millis();
|
||||
}
|
||||
|
||||
if ((millis() - lastDebounceTime) > debounceDelay) {
|
||||
// whatever the reading is at, it's been there for longer than the debounce
|
||||
// delay, so take it as the actual current state:
|
||||
|
||||
// if the button state has changed:
|
||||
if (reading != buttonState) {
|
||||
buttonState = reading;
|
||||
|
||||
// only toggle the LED if the new button state is HIGH
|
||||
if (buttonState == HIGH) {
|
||||
Serial.write("1");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
lastButtonState = reading;
|
||||
}
|
||||
|
||||
void setLight(int brightnessValue) {
|
||||
// Set the separate light brightness between 0 and 255
|
||||
analogWrite(whitePin, constrain(brightnessValue, 0, 255));
|
||||
}
|
||||
|
||||
void setStripColor(String colorString) {
|
||||
// Parse the colorString in the format "R,G,B" where R, G, and B are integer
|
||||
int commaIndex = colorString.indexOf(',');
|
||||
if (commaIndex >= 0) {
|
||||
String redStr = colorString.substring(0, commaIndex);
|
||||
colorString = colorString.substring(commaIndex + 1);
|
||||
commaIndex = colorString.indexOf(',');
|
||||
if (commaIndex >= 0) {
|
||||
String greenStr = colorString.substring(0, commaIndex);
|
||||
String blueStr = colorString.substring(commaIndex + 1);
|
||||
|
||||
// Convert the string values to integers
|
||||
int redValue = redStr.toInt();
|
||||
int greenValue = greenStr.toInt();
|
||||
int blueValue = blueStr.toInt();
|
||||
|
||||
// Set the RGB LED color based on the parsed values
|
||||
analogWrite(redPin, redValue);
|
||||
analogWrite(greenPin, greenValue);
|
||||
analogWrite(bluePin, blueValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void setIndividualLED(String command) {
|
||||
// Command format: SET_LED:index,R,G,B
|
||||
int firstComma = command.indexOf(',');
|
||||
int secondComma = command.indexOf(',', firstComma + 1);
|
||||
int thirdComma = command.indexOf(',', secondComma + 1);
|
||||
|
||||
if (firstComma != -1 && secondComma != -1 && thirdComma != -1) {
|
||||
int index = command.substring(8, firstComma).toInt(); // Extract the LED index
|
||||
int red = command.substring(firstComma + 1, secondComma).toInt(); // Extract the red value
|
||||
int green = command.substring(secondComma + 1, thirdComma).toInt(); // Extract the green value
|
||||
int blue = command.substring(thirdComma + 1).toInt(); // Extract the blue value
|
||||
|
||||
// Check if the index is within bounds
|
||||
if (index >= 0 && index < NUM_PIXELS) {
|
||||
ws2812b.setPixelColor(index, ws2812b.Color(red, green, blue));
|
||||
ws2812b.show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void setLedColor(String colorString) {
|
||||
// Parse the colorString in the format "R,G,B" where R, G, and B are integer
|
||||
int commaIndex = colorString.indexOf(',');
|
||||
if (commaIndex >= 0) {
|
||||
String redStr = colorString.substring(0, commaIndex);
|
||||
colorString = colorString.substring(commaIndex + 1);
|
||||
commaIndex = colorString.indexOf(',');
|
||||
if (commaIndex >= 0) {
|
||||
String greenStr = colorString.substring(0, commaIndex);
|
||||
String blueStr = colorString.substring(commaIndex + 1);
|
||||
|
||||
// Convert the string values to integers
|
||||
int redValue = redStr.toInt();
|
||||
int greenValue = greenStr.toInt();
|
||||
int blueValue = blueStr.toInt();
|
||||
|
||||
// Set the RGB LED color based on the parsed values
|
||||
ws2812b.fill(ws2812b.Color(redValue, greenValue, blueValue));
|
||||
ws2812b.show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
BIN
Audio/Big Switch Sound Effects All Sounds.mp3
Normal file
24
toos-dashboard/.gitignore
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
7
toos-dashboard/.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"Vue.volar",
|
||||
"tauri-apps.tauri-vscode",
|
||||
"rust-lang.rust-analyzer"
|
||||
]
|
||||
}
|
7
toos-dashboard/README.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# Tauri + Vue 3
|
||||
|
||||
This template should help get you started developing with Tauri + Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
||||
|
||||
## Recommended IDE Setup
|
||||
|
||||
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
|
14
toos-dashboard/index.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Frankenstein Dashboard</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
2071
toos-dashboard/package-lock.json
generated
Normal file
26
toos-dashboard/package.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "toos-dashboard",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"tauri": "tauri"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tauri-apps/api": "^1.5.0",
|
||||
"@vueuse/core": "^10.5.0",
|
||||
"vue": "^3.3.4",
|
||||
"vue-color-input": "^1.0.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tauri-apps/cli": "^1.5.0",
|
||||
"@vitejs/plugin-vue": "^4.2.3",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"postcss": "^8.4.31",
|
||||
"tailwindcss": "^3.3.3",
|
||||
"vite": "^4.4.4"
|
||||
}
|
||||
}
|
6
toos-dashboard/postcss.config.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
6
toos-dashboard/public/tauri.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="206" height="231" viewBox="0 0 206 231" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M143.143 84C143.143 96.1503 133.293 106 121.143 106C108.992 106 99.1426 96.1503 99.1426 84C99.1426 71.8497 108.992 62 121.143 62C133.293 62 143.143 71.8497 143.143 84Z" fill="#FFC131"/>
|
||||
<ellipse cx="84.1426" cy="147" rx="22" ry="22" transform="rotate(180 84.1426 147)" fill="#24C8DB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M166.738 154.548C157.86 160.286 148.023 164.269 137.757 166.341C139.858 160.282 141 153.774 141 147C141 144.543 140.85 142.121 140.558 139.743C144.975 138.204 149.215 136.139 153.183 133.575C162.73 127.404 170.292 118.608 174.961 108.244C179.63 97.8797 181.207 86.3876 179.502 75.1487C177.798 63.9098 172.884 53.4021 165.352 44.8883C157.82 36.3744 147.99 30.2165 137.042 27.1546C126.095 24.0926 114.496 24.2568 103.64 27.6274C92.7839 30.998 83.1319 37.4317 75.8437 46.1553C74.9102 47.2727 74.0206 48.4216 73.176 49.5993C61.9292 50.8488 51.0363 54.0318 40.9629 58.9556C44.2417 48.4586 49.5653 38.6591 56.679 30.1442C67.0505 17.7298 80.7861 8.57426 96.2354 3.77762C111.685 -1.01901 128.19 -1.25267 143.769 3.10474C159.348 7.46215 173.337 16.2252 184.056 28.3411C194.775 40.457 201.767 55.4101 204.193 71.404C206.619 87.3978 204.374 103.752 197.73 118.501C191.086 133.25 180.324 145.767 166.738 154.548ZM41.9631 74.275L62.5557 76.8042C63.0459 72.813 63.9401 68.9018 65.2138 65.1274C57.0465 67.0016 49.2088 70.087 41.9631 74.275Z" fill="#FFC131"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.4045 76.4519C47.3493 70.6709 57.2677 66.6712 67.6171 64.6132C65.2774 70.9669 64 77.8343 64 85.0001C64 87.1434 64.1143 89.26 64.3371 91.3442C60.0093 92.8732 55.8533 94.9092 51.9599 97.4256C42.4128 103.596 34.8505 112.392 30.1816 122.756C25.5126 133.12 23.9357 144.612 25.6403 155.851C27.3449 167.09 32.2584 177.598 39.7906 186.112C47.3227 194.626 57.153 200.784 68.1003 203.846C79.0476 206.907 90.6462 206.743 101.502 203.373C112.359 200.002 122.011 193.568 129.299 184.845C130.237 183.722 131.131 182.567 131.979 181.383C143.235 180.114 154.132 176.91 164.205 171.962C160.929 182.49 155.596 192.319 148.464 200.856C138.092 213.27 124.357 222.426 108.907 227.222C93.458 232.019 76.9524 232.253 61.3736 227.895C45.7948 223.538 31.8055 214.775 21.0867 202.659C10.3679 190.543 3.37557 175.59 0.949823 159.596C-1.47592 143.602 0.768139 127.248 7.41237 112.499C14.0566 97.7497 24.8183 85.2327 38.4045 76.4519ZM163.062 156.711L163.062 156.711C162.954 156.773 162.846 156.835 162.738 156.897C162.846 156.835 162.954 156.773 163.062 156.711Z" fill="#24C8DB"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
1
toos-dashboard/public/vite.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
After Width: | Height: | Size: 1.5 KiB |
4
toos-dashboard/src-tauri/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
# Generated by Cargo
|
||||
# will have compiled files and executables
|
||||
/target/
|
||||
|
4271
toos-dashboard/src-tauri/Cargo.lock
generated
Normal file
27
toos-dashboard/src-tauri/Cargo.toml
Normal file
@@ -0,0 +1,27 @@
|
||||
[package]
|
||||
name = "toos-dashboard"
|
||||
version = "0.0.0"
|
||||
description = "A Tauri App"
|
||||
authors = ["you"]
|
||||
license = ""
|
||||
repository = ""
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { version = "1.5", features = [] }
|
||||
|
||||
[dependencies]
|
||||
tauri = { version = "1.5", features = ["dialog-all", "shell-open"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
serialport = "4.2.2"
|
||||
rodio = "0.17.1"
|
||||
rust-embed="8.0.0"
|
||||
once_cell = "1.18.0"
|
||||
|
||||
[features]
|
||||
# this feature is used for production builds or when `devPath` points to the filesystem
|
||||
# DO NOT REMOVE!!
|
||||
custom-protocol = ["tauri/custom-protocol"]
|
BIN
toos-dashboard/src-tauri/assets/audio-old.mp3
Normal file
BIN
toos-dashboard/src-tauri/assets/audio.mp3
Normal file
3
toos-dashboard/src-tauri/build.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
tauri_build::build()
|
||||
}
|
BIN
toos-dashboard/src-tauri/icons/128x128.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
toos-dashboard/src-tauri/icons/128x128@2x.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
toos-dashboard/src-tauri/icons/32x32.png
Normal file
After Width: | Height: | Size: 974 B |
BIN
toos-dashboard/src-tauri/icons/Square107x107Logo.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
toos-dashboard/src-tauri/icons/Square142x142Logo.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
toos-dashboard/src-tauri/icons/Square150x150Logo.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
toos-dashboard/src-tauri/icons/Square284x284Logo.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
toos-dashboard/src-tauri/icons/Square30x30Logo.png
Normal file
After Width: | Height: | Size: 903 B |
BIN
toos-dashboard/src-tauri/icons/Square310x310Logo.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
toos-dashboard/src-tauri/icons/Square44x44Logo.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
toos-dashboard/src-tauri/icons/Square71x71Logo.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
toos-dashboard/src-tauri/icons/Square89x89Logo.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
toos-dashboard/src-tauri/icons/StoreLogo.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
toos-dashboard/src-tauri/icons/icon.icns
Normal file
BIN
toos-dashboard/src-tauri/icons/icon.ico
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
toos-dashboard/src-tauri/icons/icon.png
Normal file
After Width: | Height: | Size: 14 KiB |
128
toos-dashboard/src-tauri/src/animation.rs
Normal file
@@ -0,0 +1,128 @@
|
||||
use std::time::Duration;
|
||||
use std::thread;
|
||||
use std::fs::File;
|
||||
use std::io::BufReader;
|
||||
use rodio::{Decoder, OutputStream, Sink};
|
||||
use std::sync::Mutex;
|
||||
use once_cell::sync::Lazy;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
||||
use crate::serial;
|
||||
|
||||
struct Timings {
|
||||
charging_start_delay: u64,
|
||||
charging_delay: u64,
|
||||
charging_end_delay: u64,
|
||||
}
|
||||
|
||||
static TIMINGS: Mutex<Lazy<Timings>> = Mutex::new(Lazy::new(|| Timings { charging_start_delay: 1600, charging_delay: 450, charging_end_delay: 400 } ));
|
||||
static PLAYING: Mutex<bool> = Mutex::new(false);
|
||||
pub static AUDIO_PATH: Mutex<Lazy<PathBuf>> = Mutex::new(Lazy::new(|| Path::new("assets/audio.mp3").to_path_buf()));
|
||||
|
||||
#[tauri::command]
|
||||
pub fn start() {
|
||||
let mut playing = PLAYING.lock().unwrap();
|
||||
|
||||
if *playing {
|
||||
return;
|
||||
} else {
|
||||
*playing = true;
|
||||
}
|
||||
thread::spawn(move || {
|
||||
println!("Starting animation...");
|
||||
|
||||
|
||||
play_sound();
|
||||
thread::sleep(Duration::from_millis(800));
|
||||
|
||||
let _ = serial::write_serial(format!("SET_LIGHT:0;").as_str());
|
||||
stage_one();
|
||||
stage_two();
|
||||
|
||||
let mut playing = PLAYING.lock().unwrap();
|
||||
*playing = false;
|
||||
});
|
||||
}
|
||||
|
||||
fn play_sound() {
|
||||
thread::spawn(|| {
|
||||
let (_stream, stream_handle) = OutputStream::try_default().unwrap();
|
||||
let sink = Sink::try_new(&stream_handle).unwrap();
|
||||
|
||||
let path = AUDIO_PATH.lock().unwrap();
|
||||
|
||||
let file = BufReader::new(File::open(&**path).unwrap());
|
||||
let source = Decoder::new(file).unwrap();
|
||||
|
||||
sink.append(source);
|
||||
|
||||
sink.sleep_until_end();
|
||||
});
|
||||
}
|
||||
|
||||
fn stage_one() {
|
||||
let timings = TIMINGS.lock().unwrap();
|
||||
|
||||
thread::sleep(Duration::from_millis(timings.charging_start_delay));
|
||||
|
||||
for i in 0..17 {
|
||||
let _ = serial::write_serial(format!("SET_LED:{},0,128,255;", i).as_str());
|
||||
let _ = serial::write_serial(format!("SET_LED:{},0,128,255;", 33 - i).as_str());
|
||||
|
||||
let _ = serial::write_serial(format!("SET_LED:{},0,128,255;", i + 34).as_str());
|
||||
let _ = serial::write_serial(format!("SET_LED:{},0,128,255;", 67 - i).as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(timings.charging_delay));
|
||||
}
|
||||
}
|
||||
|
||||
fn stage_two() {
|
||||
let timings = TIMINGS.lock().unwrap();
|
||||
|
||||
thread::sleep(Duration::from_millis(timings.charging_end_delay));
|
||||
let _ = serial::write_serial(format!("SET_LED_OFF;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,0,0;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(200));
|
||||
let _ = serial::write_serial(format!("SET_LED_COLOR:0,128,255;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,128,255;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(100));
|
||||
let _ = serial::write_serial(format!("SET_LED_OFF;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,0,0;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(200));
|
||||
let _ = serial::write_serial(format!("SET_LED_COLOR:0,128,255;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,128,255;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(200));
|
||||
let _ = serial::write_serial(format!("SET_LED_OFF;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,0,0;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(100));
|
||||
let _ = serial::write_serial(format!("SET_LED_COLOR:0,128,255;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,128,255;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(100));
|
||||
let _ = serial::write_serial(format!("SET_LED_OFF;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,0,0;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(300));
|
||||
let _ = serial::write_serial(format!("SET_LED_COLOR:0,128,255;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,128,255;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(100));
|
||||
let _ = serial::write_serial(format!("SET_LED_OFF;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,0,0;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(100));
|
||||
let _ = serial::write_serial(format!("SET_LED_COLOR:0,128,255;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,128,255;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(200));
|
||||
let _ = serial::write_serial(format!("SET_LED_OFF;").as_str());
|
||||
let _ = serial::write_serial(format!("SET_STRIP_COLOR:0,0,0;").as_str());
|
||||
|
||||
thread::sleep(Duration::from_millis(1000));
|
||||
let _ = serial::write_serial(format!("SET_LIGHT:255;").as_str());
|
||||
}
|
23
toos-dashboard/src-tauri/src/main.rs
Normal file
@@ -0,0 +1,23 @@
|
||||
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
||||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
mod serial;
|
||||
mod animation;
|
||||
|
||||
fn main() {
|
||||
tauri::Builder::default()
|
||||
.invoke_handler(tauri::generate_handler![serial::get_serial_ports, serial::write_serial, serial::open_port, serial::close_port, animation::start])
|
||||
.setup(|app| {
|
||||
let resource_path = app.path_resolver()
|
||||
.resolve_resource("assets/audio.mp3")
|
||||
.expect("failed to resolve resource");
|
||||
|
||||
let mut audio_path = animation::AUDIO_PATH.lock().unwrap();
|
||||
|
||||
**audio_path = resource_path;
|
||||
|
||||
Ok(())
|
||||
})
|
||||
.run(tauri::generate_context!())
|
||||
.expect("error while running tauri application");
|
||||
}
|
103
toos-dashboard/src-tauri/src/serial.rs
Normal file
@@ -0,0 +1,103 @@
|
||||
use std::io::ErrorKind;
|
||||
use std::time::Duration;
|
||||
use std::collections::HashMap;
|
||||
use std::sync::Mutex;
|
||||
use tauri::Manager;
|
||||
use once_cell::sync::Lazy;
|
||||
|
||||
use crate::animation;
|
||||
|
||||
#[derive(Default)]
|
||||
pub struct PortMap(Mutex<HashMap<String, Box<dyn serialport::SerialPort>>>);
|
||||
|
||||
static PORT_MAP: Mutex<Lazy<HashMap<String, Box<dyn serialport::SerialPort>>>> = Mutex::new(Lazy::new(|| HashMap::new()));
|
||||
static PORT_NAME: Mutex<Lazy<String>> = Mutex::new(Lazy::new(|| String::from("/dev/ttyUSB0")));
|
||||
|
||||
#[derive(Clone, serde::Serialize)]
|
||||
pub struct PayloadPortState {
|
||||
open: bool,
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
pub fn write_serial(input: &str) -> Result<(), String> {
|
||||
let port_name = PORT_NAME.lock().unwrap().to_string();
|
||||
match PORT_MAP.lock().unwrap().get(&port_name) {
|
||||
Some(port) => {
|
||||
let mut clone = port.try_clone().expect("Failed to clone");
|
||||
match clone.write(input.as_bytes()) {
|
||||
Ok(_) => {
|
||||
Ok(())
|
||||
},
|
||||
Err(err) => Err(err.to_string()),
|
||||
}
|
||||
}
|
||||
None => {
|
||||
Err(String::from("Port is closed"))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
pub fn get_serial_ports() -> Vec<String> {
|
||||
let ports = serialport::available_ports().expect("No ports found");
|
||||
|
||||
let mut vec: Vec<String> = Vec::new();
|
||||
|
||||
for p in ports {
|
||||
vec.push(p.port_name);
|
||||
}
|
||||
vec
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
pub fn close_port(app_handle: tauri::AppHandle) {
|
||||
let port_name = PORT_NAME.lock().unwrap().to_string();
|
||||
match PORT_MAP.lock().unwrap().remove(&port_name) {
|
||||
Some(_) => {
|
||||
println!("Port {:?} closed", port_name);
|
||||
app_handle.emit_all("port-state", PayloadPortState { open: false }).unwrap();
|
||||
},
|
||||
None => println!("Port {:?} was already closed", port_name),
|
||||
}
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
pub async fn open_port(app_handle: tauri::AppHandle, baud: u32) -> Result<(), String> {
|
||||
let port_name = PORT_NAME.lock().unwrap().to_string();
|
||||
|
||||
match serialport::new(&port_name, baud).timeout(Duration::from_millis(10)).open() {
|
||||
Ok(port) => {
|
||||
// port_map.0.lock().unwrap().insert(port_name.to_string(), port.try_clone().expect("Error cloning"));
|
||||
PORT_MAP.lock().unwrap().insert(port_name.clone(), port.try_clone().expect("Error cloning port"));
|
||||
|
||||
let mut clone = port.try_clone().expect("Failed to clone");
|
||||
let mut buffer: Vec<u8> = vec![0; 1024];
|
||||
|
||||
println!("Port {:?} is open", port_name);
|
||||
|
||||
app_handle.emit_all("port-state", PayloadPortState { open: true }).unwrap();
|
||||
|
||||
loop {
|
||||
match clone.read(buffer.as_mut_slice()) {
|
||||
Ok(bytes_read) => {
|
||||
if bytes_read > 0 {
|
||||
let data = &buffer[..bytes_read];
|
||||
let data = String::from_utf8_lossy(data).to_string();
|
||||
if !data.trim().is_empty() {
|
||||
println!("{}", data.trim());
|
||||
if data.trim() == "1" {
|
||||
animation::start();
|
||||
app_handle.emit_all("button-on", PayloadPortState { open: true }).unwrap();
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
Err(ref e) if e.kind() == ErrorKind::TimedOut => (),
|
||||
Err(e) => return Err(e.to_string()),
|
||||
};
|
||||
|
||||
}
|
||||
},
|
||||
Err(err) => return Err(err.to_string()),
|
||||
}
|
||||
}
|
52
toos-dashboard/src-tauri/tauri.conf.json
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"build": {
|
||||
"beforeDevCommand": "npm run dev",
|
||||
"beforeBuildCommand": "npm run build",
|
||||
"devPath": "http://127.0.0.1:1420",
|
||||
"distDir": "../dist",
|
||||
"withGlobalTauri": false
|
||||
},
|
||||
"package": {
|
||||
"productName": "toos-dashboard",
|
||||
"version": "0.0.0"
|
||||
},
|
||||
"tauri": {
|
||||
"allowlist": {
|
||||
"all": false,
|
||||
"shell": {
|
||||
"all": false,
|
||||
"open": true
|
||||
},
|
||||
"dialog": {
|
||||
"all": true
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": "all",
|
||||
"identifier": "dev.xeovalyte.toosdashboard",
|
||||
"icon": [
|
||||
"icons/32x32.png",
|
||||
"icons/128x128.png",
|
||||
"icons/128x128@2x.png",
|
||||
"icons/icon.icns",
|
||||
"icons/icon.ico"
|
||||
],
|
||||
"resources": [
|
||||
"assets/audio.mp3"
|
||||
]
|
||||
},
|
||||
"security": {
|
||||
"csp": null
|
||||
},
|
||||
"windows": [
|
||||
{
|
||||
"fullscreen": false,
|
||||
"resizable": true,
|
||||
"title": "Frankenstein Dashboard",
|
||||
"width": 800,
|
||||
"height": 600
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
44
toos-dashboard/src/App.vue
Normal file
@@ -0,0 +1,44 @@
|
||||
<template>
|
||||
<div class="w-full flex h-screen bg-neutral-950">
|
||||
<Sidebar @updateCurrentPage="setCurrentPage" />
|
||||
<div class="w-full">
|
||||
<Status />
|
||||
<Main v-if="currentPage === 0" />
|
||||
<Conf v-if="currentPage === 1" />
|
||||
<Test v-if="currentPage === 2" />
|
||||
</div>
|
||||
<audio id="audioContainer">
|
||||
<source src="./assets/audio.mp3" type="audio/mp3">
|
||||
</audio>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Sidebar from "./components/Sidebar.vue";
|
||||
import Test from "./components/Test.vue";
|
||||
import Main from "./components/Main.vue";
|
||||
import Conf from "./components/Conf.vue";
|
||||
import Status from "./components/Status.vue";
|
||||
|
||||
import { ref, onMounted } from "vue";
|
||||
import { listen } from '@tauri-apps/api/event';
|
||||
import { invoke } from "@tauri-apps/api/tauri"
|
||||
import { useLocalStorage } from '@vueuse/core'
|
||||
|
||||
const serialConfig = useLocalStorage('serialConfig', { port: '', baud: 9600, open: false })
|
||||
|
||||
const currentPage = ref(2);
|
||||
|
||||
const setCurrentPage = (x) => {
|
||||
currentPage.value = x;
|
||||
}
|
||||
|
||||
onMounted(async () => {
|
||||
await invoke('close_port', { portName: serialConfig.value.port, baud: serialConfig.value.baud });
|
||||
serialConfig.value.open = false;
|
||||
|
||||
await listen('port-state', (event) => {
|
||||
serialConfig.value.open = event.payload.open
|
||||
});
|
||||
})
|
||||
</script>
|
BIN
toos-dashboard/src/assets/audio.mp3
Normal file
1
toos-dashboard/src/assets/vue.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
After Width: | Height: | Size: 496 B |
10
toos-dashboard/src/components/Conf.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<h1 class="text-white text-2xl w-full font-bold text-center my-24">Frankenstein Test</h1>
|
||||
<div class="flex w-full justify-center">
|
||||
<Serial />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Serial from "./conf/Serial.vue"
|
||||
</script>
|
23
toos-dashboard/src/components/Main.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<h1 class="text-white text-2xl w-full font-bold text-center my-24">Frankenstein Dashboard</h1>
|
||||
<div class="flex w-full justify-center gap-10">
|
||||
<div class="bg-neutral-800 rounded-2xl p-5 h-min">
|
||||
<h2 class="text-white font-bold text-lg text-center mb-5">Animation</h2>
|
||||
<div class="flex flex-col items-center">
|
||||
<div class="space-x-3">
|
||||
<button @click="test" class="px-5 py-2 bg-sky-400 rounded my-5">
|
||||
Start Animation
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { invoke } from "@tauri-apps/api/tauri"
|
||||
|
||||
const test = async () => {
|
||||
await invoke('start');
|
||||
}
|
||||
</script>
|
17
toos-dashboard/src/components/Sidebar.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div class="bg-neutral-800 text-white font-bold w-min px-2 flex flex-col gap-10 justify-center">
|
||||
<button @click="$emit('updateCurrentPage', 0)" class="text-center bg-neutral-900 w-16 h-16 rounded-xl">
|
||||
MAIN
|
||||
</button>
|
||||
<button @click="$emit('updateCurrentPage', 1)" class="text-center bg-neutral-900 w-16 h-16 rounded-xl">
|
||||
CONF
|
||||
</button>
|
||||
<button @click="$emit('updateCurrentPage', 2)" class="text-center bg-neutral-900 w-16 h-16 rounded-xl">
|
||||
TEST
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const emit = defineEmits(['updateCurrentPage'])
|
||||
</script>
|
31
toos-dashboard/src/components/Status.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<div class="text-white flex justify-center w-full bg-neutral-800 py-3">
|
||||
<span class="font-bold">PORT {{serialConfig.port}} is
|
||||
<span v-if="serialConfig.open" class="text-green-500 hover:cursor-pointer" @click="closePort">OPEN</span>
|
||||
<span v-else class="text-red-600 hover:cursor-pointer" @click="openPort">CLOSED</span>
|
||||
</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { useLocalStorage } from '@vueuse/core'
|
||||
import { invoke } from "@tauri-apps/api/tauri"
|
||||
|
||||
const serialConfig = useLocalStorage('serialConfig', { port: '', baud: 9600, open: false })
|
||||
|
||||
const openPort = () => {
|
||||
try {
|
||||
invoke('open_port', { portName: serialConfig.value.port, baud: serialConfig.value.baud });
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
}
|
||||
|
||||
const closePort = async () => {
|
||||
try {
|
||||
await invoke('close_port', { portName: serialConfig.value.port, baud: serialConfig.value.baud });
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
}
|
||||
</script>
|
81
toos-dashboard/src/components/Test.vue
Normal file
@@ -0,0 +1,81 @@
|
||||
<template>
|
||||
<h1 class="text-white text-2xl w-full font-bold text-center my-24">Frankenstein Test</h1>
|
||||
<div class="flex w-full justify-center gap-10">
|
||||
<div class="bg-neutral-800 rounded-2xl p-5 h-min">
|
||||
<h2 class="text-white font-bold text-lg text-center mb-5">LED Strip Monster</h2>
|
||||
<div class="flex flex-col items-center">
|
||||
<color-input disable-alpha v-model="color" />
|
||||
<div class="space-x-3">
|
||||
<button @click="submitColor" class="px-5 py-2 bg-sky-400 rounded my-5">
|
||||
Submit Color
|
||||
</button>
|
||||
<button class="px-3 py-2 bg-red-700 rounded my-5">
|
||||
reset
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-neutral-800 rounded-2xl p-5 h-min">
|
||||
<h2 class="text-white font-bold text-lg text-center mb-5">LED Strip Hallway</h2>
|
||||
<div class="flex flex-col items-center">
|
||||
<input v-model="brightness" type="range" min="0" max="100" class="w-40">
|
||||
<label class="text-white mt-2">BRIGHTNESS: {{ brightness }}% </label>
|
||||
<button @click="submitBrightness" class="px-5 py-2 bg-sky-400 w-full rounded mt-4">
|
||||
Submit
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-neutral-800 rounded-2xl p-5">
|
||||
<h2 class="text-white font-bold text-lg text-center mb-5">LED Strip Electrons</h2>
|
||||
<div class="flex flex-col items-center">
|
||||
<color-input disable-alpha v-model="pixel.color" />
|
||||
<div class="flex items-center mt-4">
|
||||
<label class="text-white mr-2">Pixel: </label>
|
||||
<input v-model="pixel.pixel" type="number" min="0" max="182" class="w-40">
|
||||
</div>
|
||||
<button @click="submitPixel" class="px-5 py-2 bg-sky-400 w-full rounded my-5">
|
||||
Submit Color
|
||||
</button>
|
||||
<button class="px-5 py-2 bg-sky-400 w-full rounded mb-5">
|
||||
Test
|
||||
</button>
|
||||
<button @click="resetStrip" class="px-5 py-2 bg-red-700 w-full rounded">
|
||||
Turn Off
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from "vue"
|
||||
import { useSerial } from "../composables/useSerial"
|
||||
|
||||
const color = ref({ r: 0, g: 128, b: 255, a: 1});
|
||||
const brightness = ref(100);
|
||||
const pixel = ref({ color: { r: 64, g: 255, b: 255, a: 1 }, pixel: 0 });
|
||||
|
||||
const submitColor = () => {
|
||||
useSerial("SET_STRIP_COLOR:" + `${color.value.r},${color.value.g},${color.value.b}`);
|
||||
}
|
||||
|
||||
const submitBrightness = () => {
|
||||
useSerial("SET_LIGHT:" + brightness.value * 2.55);
|
||||
}
|
||||
|
||||
const submitPixel = () => {
|
||||
useSerial("SET_LED:" + `${pixel.value.pixel},${pixel.value.color.r},${pixel.value.color.g},${pixel.value.color.b}`);
|
||||
}
|
||||
|
||||
const resetStrip = () => {
|
||||
useSerial("SET_LED_OFF");
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.color-input.user .box {
|
||||
/* make clickable box a 100x100 circle */
|
||||
width: 100px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
</style>
|
35
toos-dashboard/src/components/conf/Serial.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<div class="bg-neutral-800 rounded-2xl p-5">
|
||||
<h2 class="text-white font-bold text-lg text-center mb-5">Serial</h2>
|
||||
<div class="flex flex-col gap-y-2 items-center">
|
||||
<div class="grid grid-cols-[70px_1fr] auto-cols-auto gap-y-2">
|
||||
<label class="text-white mr-2">PORT </label>
|
||||
<input type="text" v-model="serialConfig.port">
|
||||
<label class="text-white mr-2">BAUD</label>
|
||||
<input type="number" v-model="serialConfig.baud">
|
||||
</div>
|
||||
<span class="text-white mt-3 font-bold">Available ports:</span>
|
||||
<span v-for="port in ports" class="text-white hover:cursor-pointer bg-neutral-900 rounded w-full px-3 py-1 hover:bg-opacity-50" @click="serialConfig.port = port">
|
||||
{{ port }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { onMounted, ref } from "vue";
|
||||
import { invoke } from "@tauri-apps/api/tauri"
|
||||
import { useLocalStorage } from '@vueuse/core'
|
||||
|
||||
const ports = ref([])
|
||||
|
||||
const serialConfig = useLocalStorage('serialConfig', { port: '', baud: 9600, open: false })
|
||||
|
||||
const getSerialPorts = async () => {
|
||||
return await invoke('get_serial_ports');
|
||||
}
|
||||
|
||||
onMounted(async () => {
|
||||
ports.value = await getSerialPorts()
|
||||
})
|
||||
</script>
|
14
toos-dashboard/src/composables/useSerial.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import { invoke } from "@tauri-apps/api/tauri"
|
||||
import { message } from '@tauri-apps/api/dialog';
|
||||
import { useLocalStorage } from '@vueuse/core'
|
||||
|
||||
const serialConfig = useLocalStorage('serialConfig', { port: '', baud: 9600 })
|
||||
|
||||
export async function useSerial(input) {
|
||||
try {
|
||||
await invoke('write_serial', { input: input + ";", portName: serialConfig.value.port, baud: serialConfig.value.baud });
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
await message(err, { title: 'Error while writing serial', type: 'error' });
|
||||
}
|
||||
}
|
7
toos-dashboard/src/composables/useStore.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Store } from "tauri-plugin-store-api";
|
||||
|
||||
const store = new Store(".settings.dat");
|
||||
|
||||
export function useStore() {
|
||||
return store
|
||||
}
|
6
toos-dashboard/src/main.js
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createApp } from "vue";
|
||||
import "./styles.css";
|
||||
import App from "./App.vue";
|
||||
import ColorInput from 'vue-color-input'
|
||||
|
||||
createApp(App).use(ColorInput).mount("#app");
|
9
toos-dashboard/src/styles.css
Normal file
@@ -0,0 +1,9 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer components {
|
||||
input {
|
||||
@apply bg-neutral-700 rounded px-2 text-white
|
||||
}
|
||||
}
|
12
toos-dashboard/tailwind.config.js
Normal file
@@ -0,0 +1,12 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx,vue}",
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
20
toos-dashboard/vite.config.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import { defineConfig } from "vite";
|
||||
import vue from "@vitejs/plugin-vue";
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig(async () => ({
|
||||
plugins: [vue()],
|
||||
|
||||
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
|
||||
//
|
||||
// 1. prevent vite from obscuring rust errors
|
||||
clearScreen: false,
|
||||
// 2. tauri expects a fixed port, fail if that port is not available
|
||||
server: {
|
||||
port: 1420,
|
||||
strictPort: true,
|
||||
},
|
||||
// 3. to make use of `TAURI_DEBUG` and other env variables
|
||||
// https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
|
||||
envPrefix: ["VITE_", "TAURI_"],
|
||||
}));
|