Add stocks, tailcode, and picoclaw apps for NanoKVM Pro#2
Open
Sideflare wants to merge 16 commits into
Open
Conversation
added 16 commits
March 7, 2026 15:08
Three new touchscreen apps for the NanoKVM Pro (172x320 display, rotary knob): - stocks: 5-symbol stock tracker with 5-day 1h candlestick charts. Touch to cycle symbols, rotary encoder + long-press to edit symbols. - tailcode: Tailscale connection info and QR code for the KVM web UI. Shows Tailscale URL, IP, and scannable QR code at a glance. - picoclaw: PicoClaw AI Agent UI — 7-page app with voice commands (OpenAI Whisper), agent chat, skills management, auth, and setup. Requires picoclaw v0.2.0+ installed on the device. All apps use the shared framebuffer.py / input.py pattern. Authored-by: Sideflare (cleavines01)
Replace OpenAI Whisper with Vosk (vosk-model-small-en-us-0.15, ~40MB). - Fully offline, no API key or internet required for voice commands - Model loads in background at app startup - Setup page shows model status instead of Whisper key config - Voice page shows 'Model loading...' indicator until ready - Requires: pip3 install vosk + model in ./model/
CL=F is Yahoo Finance symbol for WTI crude oil front-month futures (CL1! in TradingView notation).
…), Stocks (PSLV/CL=F), Tailscale
…ns for GitHub users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three new touchscreen apps for the NanoKVM Pro (172x320 display, rotary knob):
stocks: 5-symbol stock tracker with 5-day 1h candlestick charts. Touch to cycle symbols, rotary encoder + long-press to edit symbols.
tailcode: Tailscale connection info and QR code for the KVM web UI. Shows Tailscale URL, IP, and scannable QR code at a glance.
picoclaw: PicoClaw AI Agent UI — 7-page app with voice commands (OpenAI Whisper), agent chat, skills management, auth, and setup. Requires picoclaw v0.2.0+ installed on the device.
All apps use the shared framebuffer.py / input.py pattern. Authored-by: Sideflare (cleavines01)