Skip to content

Commit

Permalink
Animation disabled for fast data rate
Browse files Browse the repository at this point in the history
  • Loading branch information
NPIPHI committed Oct 27, 2022
1 parent 999e569 commit 84b0288
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 0 deletions.
15 changes: 15 additions & 0 deletions GUI/build/web.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
const ws = new WebSocket("ws://localhost:8080");
ws.onmessage = msg=>console.log(JSON.parse(msg.data));
</script>
</body>
</html>
5 changes: 5 additions & 0 deletions mock/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch
10 changes: 10 additions & 0 deletions mock/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}
16 changes: 16 additions & 0 deletions mock/workspace.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"folders": [
{
"path": ".."
},
{
"name": "mock",
"path": "."
}
],
"settings": {
"files.associations": {
"cmath": "cpp"
}
}
}
3 changes: 3 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84b0288

Please sign in to comment.