commit 13ad335ec18339d5b38eb0ef748e8f0a53080063 parent 854d256082c861b935eb6beb23d2865cd1c7ff6f Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com> Date: Thu, 2 Jul 2026 22:45:04 +0900 Update README.md Diffstat:
| M | README.md | | | 27 | +++++++++++++++++++++++++-- |
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md @@ -1 +1,25 @@ -# lab_status- \ No newline at end of file +# lab_presence +An app that visualizes laboratory occupancy status. + +- local: Maintain status in the laboratory. +- client: Someone checking presence status from outside. +- remote: Someone who changes their presence status from an external location +- NFC: Update your presence status in the laboratory. +- slint: Display presence status in the laboratory. +- webserver: Ensuring redundancy for local and cloud presence status, and serving as a gateway for external communication. + +```mermaid +flowchart TD + local --> webserver + client --> webserver + NFC --> local + webserver --> local + webserver --> database + slint --> local + remote --> webserver + + subgraph public-cloud + database + webserver + end +```