FalcoMP is a terminal-based device manager for MicroPython boards built around mpremote.
It provides a structured interface for interacting with devices over serial, managing files, and streamlining development workflows.
Gratuity is not necessary but may be directed to Buy Me a Coffee
-
Device Discovery
- Automatically detects devices connected via serial on startup
-
Terminal UI (TUI)
- Keyboard-driven interface
-
File Explorer
- Browse device filesystem
- Create and delete files/directories
- Run micropython files directly on the device remotely.
-
Command Abstraction
- Wraps common
mpremoteoperations:- Run scripts
- Open REPL
- File transfer
- Directory management
- Wraps common
-
Smart Sync
- Diff-based synchronization between local working directory and device
- Only modified files are written
- Reduces unnecessary writes
-
Stub Generator
- Generates local type stubs from device modules
- Improves editor support with a custom typing file catered to your specific port
-
Configuration Injection
- Automatically deploys a lightweight JSON config to each device
- Enables:
- Device naming
- Ignore rules
- Sync behavior control
python -m venv env
env/Scripts/activate
pip install falco-mpStart the interface:
env/Scripts/activate
falco-mp- Connect your MicroPython device via USB
- Launch FalcoMP
- Select your device from the menu
- Use available actions:
- Run scripts
- Open REPL
- Sync files
- Manage filesystem
- Generate Typings/Stubs
Each device receives a small JSON configuration file on first connection.
Example structure:
{
"name": "MyDevice",
"serial": "<device serial if applicable>",
"verify-on-sync": true,
"preserve-device-files": false,
"print_sync_report": true,
"ignore": ["typings", "__pycache__"],
"notes": []
}- Stored directly on the device
- Used to control sync behavior and UI display
- Pure Python implementation
- Minimal overhead on device
- Deterministic file operations
- Optimized for MicroPython constraints
- Python 3.10+
- MicroPython 1.16+
- FalcoMP does not replace
mpremote— it builds on top of it - Designed for local, direct USB workflows (not network-first)
MIT License