mongoose/examples/device-dashboard/README.md

27 lines
779 B
Markdown
Raw Normal View History

2020-12-16 18:54:09 +08:00
# A complete device dashboard
This example is a demonstration of how Mongoose Library could be integrated
2021-08-02 07:23:01 +08:00
into an embedded device and provide a complete device dashboard with the
2020-12-16 18:54:09 +08:00
following features:
- Authentication: login-protected dashboard
2023-05-27 01:43:36 +08:00
- Multiple logins (with possibly different permissions)
- The Web UI can be fully embedded into the firmware binary, then not
needing a filesystem to serve it; so being resilient to FS problems
2023-02-16 21:20:58 +08:00
- All changes are propagated to all connected clients
2020-12-16 18:54:09 +08:00
2023-02-16 21:20:58 +08:00
## Screenshots
2020-12-16 18:54:09 +08:00
This is a login screen that prompts for user/password
2023-02-10 06:41:49 +08:00
![](screenshots/login.webp)
2020-12-16 18:54:09 +08:00
2023-02-16 21:20:58 +08:00
## Main dashboard
2020-12-16 18:54:09 +08:00
2023-05-27 01:43:36 +08:00
The main dashboard page shows the interactive console
2020-12-16 18:54:09 +08:00
2023-02-10 06:41:49 +08:00
![](screenshots/dashboard.webp)
2023-02-16 21:20:58 +08:00
2023-11-11 04:16:06 +08:00
See a detailed tutorial at https://mongoose.ws/tutorials/device-dashboard/