A collection of custom applications for the Vobot Mini Dock smart display.
Basically it's this sweet little computer dock (you know with all kinds of extra ports) that you can get for about $50 on Amazon but it has a display and a wheel that you can then install apps from their store (it's pretty sparse TBH). But the real reason I got it is so that I can write apps myself for it. Please to enjoy...
vobot-apps/
├── ntfy/ # ntfy project folder
│ ├── apps/
│ │ └── ntfy/ # app package for device
│ └── *.jpg # screenshots
├── proxmox/ # Proxmox dashboard project folder
│ ├── apps/
│ │ └── proxmox/ # app package for device
│ └── *.jpg # screenshots
├── .venv/ # workspace-level Python venv
├── .github/
│ ├── copilot-instructions.md
│ └── prompts/
└── README.md
A notification viewer for self-hosted ntfy servers. Displays push notifications with message navigation via rotary encoder.
Features:
- Real-time notification display
- Message navigation with scroll wheel
- Message counter (1/5 display)
- Automatic periodic fetching
- Timestamped messages
See ntfy/apps/ntfy/README.md for details.
A two-page Proxmox dashboard showing CPU/RAM arcs, network in/out bars with arrows, and VM/LXC counts; includes a text debug page (uptime, swap, disk, metrics).
Features:
- Rotary wheel navigation between dashboard and debug pages
- CPU/RAM arc gauges; network KB/s bars; VM/LXC bars
- Polls Proxmox every 10 seconds; shows uptime/swap/disk on debug page
See proxmox/README.md for details.
- Hardware: ESP32-S3 with rotary encoder, buttons, and 320x240 display
- Software: MicroPython with LVGL UI framework
- Resources: 200KB per app, 900KB total app storage
- Vobot Mini Dock device
- USB-C data cable (not charge-only)
- Computer (Windows/Linux/macOS)
- Connect via the USB-C on the right side of the device (literally named "computer")
- Thonny IDE (recommended) or VS Code with ampy
- ampy for command-line uploads
- Python 3.7+ for development tools
To install custom apps, enable Developer Mode:
- On Vobot: Settings → Miscellaneous → Experimental Features → Developer Mode
- Power cycle the device (disconnect and reconnect power)
- Developer mode is now active
Using Thonny (Easiest):
- Connect Vobot via USB-C cable
- Open Thonny → Select ESP32 port
- View → Files → Navigate to
/apps - Upload app folder to
/apps/<app_name>/ - Press Ctrl+D to restart
Using ampy (Command Line):
# Install ampy
pip install adafruit-ampy
# Upload app (Windows PowerShell example - run from repository root)
# Prefer module invocation to avoid Windows EXE shim issues
& ".\.venv\Scripts\python.exe" -m ampy.cli --port COM4 --baud 115200 --delay 2 put ntfy/apps/ntfy /apps/ntfyUsing VS Code Pymakr:
- Install Pymakr extension
- Connect to ESP32 device
- Use Pymakr commands to upload files
- Restart via REPL (Ctrl+D)
Thonny: View → Files → Right-click app folder → Delete → Ctrl+D
ampy: & ".\.venv\Scripts\ampy.exe" --port COM4 rmdir /apps/<app_name>
If ampy.exe returns "Failed to canonicalize script path", use the module entrypoint instead (recommended):
& ".\.venv\Scripts\python.exe" -m pip install --upgrade adafruit-ampy
& ".\.venv\Scripts\python.exe" -m ampy.cli --port COM4 --baud 115200 --delay 2 put ntfy/apps/ntfy /apps/ntfyReal-time logs (PowerShell):
$port = New-Object System.IO.Ports.SerialPort COM4, 115200, None, 8, One
$port.Open()
Write-Host "Monitoring COM4"
while($port.IsOpen) {
try {
$byte = $port.ReadChar()
[Console]::Write([char]$byte)
} catch {
Start-Sleep -Milliseconds 100
}
}Thonny logs: View Shell window for real-time output
Can't connect to device:
- Check USB cable is data-capable (not charge-only)
- Verify correct serial port (Device Manager on Windows)
- Close other programs using the port
- Try different USB port
App doesn't appear:
- Ensure Developer Mode is enabled
- Verify app is in
/apps/<app_name>/(not nested) - Restart device (Ctrl+D)
App crashes:
- Check memory usage (MicroPython has limited RAM)
- Review logs for error messages
- Ensure proper cleanup in
on_stop()method
- Vobot Developer Documentation
- LVGL Documentation
- MicroPython Documentation
- Official Vobot Apps Repository
- User Forum
- Vobot Mini Dock Simulator
Use the dock-app-bundler-win.exe and choose D:\daevid\Code\Vobot\ntfy\apps\ntfy it will bundle up a ntfy.vbt file,
save it in the parent folder: D:\daevid\Code\Vobot\ntfy\apps
Login to https://app.myvobot.com/profile
This is a personal project repository. Feel free to fork and adapt for your own use or even make a PR if you want to contribute back to this and make it better.
My Vobot Community Forum Announcement
This is for my own note to append to the last commit. Useful for minor changes I don't want to clutter up my history with...
git add -u
git commit --amend --no-edit
git push origin master:main --force
git status
Last Updated: December 17, 2025