Add basic device connection logic doc

main
lambda 1 month ago
parent 2e79067db6
commit 17c1aafd5e

@ -4,6 +4,26 @@ Minimalistic web application for running zwo workouts.
This template should help get you started developing with Tauri in vanilla HTML, CSS and Javascript.
## Recommended IDE Setup
- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
#+begin_src plantuml
@startuml
start
fork
:поиск перефирии;
fork again
:запрос сохранённых датчиков;
end merge
if(сохранённые датчики найдены) then (да)
:подключаем сохранённые;
else (нет)
:подключаем наиболее мощные;
endif
if(все датчики подключены) then (да)
label connect
:предлагаем начать;
else (нет)
:ручной ввод;
goto connect
endif
stop
@enduml
#+end_src

Loading…
Cancel
Save