optimized control_mqtt

This commit is contained in:
2024-12-21 18:25:54 +01:00
parent 1a1b6f36d3
commit 282cb119ea
7 changed files with 177 additions and 112 deletions

View File

@@ -1,3 +1,4 @@
{
"taipyStudio.config.mainPythonFile": "prova.py"
"taipyStudio.config.mainPythonFile": "prova.py",
"taipyStudio.gUI.elementsFilePaths": []
}

12
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "deploy file to mqtt server",
"type": "shell",
"command": "scp -P 6229 ${file} root@mqtt:/var/lib/mosquitto/"
}
]
}