I often compile firmware, embedded projects, or code that triggers hardware tests.
But I always wished I had a physical indicator β like an RGB LED or display β to show when a build finishes successfully or fails.
So I made a small but useful VS Code extension:
π notifybuildresult
https://github.com/sdrshnptl/notifybuildresult
π§ What it does
This extension broadcasts a UDP message whenever a VS Code task completes.
You can trigger anything that listens on your network:
- RGB LEDs (ESP32, Arduino)
- Desktop indicators
- IoT devices
- Dashboards
- Lab automation
- Raspberry Pi scripts
- Home automation nodes
Example use case:
π‘ Build succeeded β LED turns green
β Build failed β LED turns red
π‘ How it works
When a task finishes, the extension sends a JSON payload like:
json
{
"task": "build",
"status": "success"
}
Top comments (0)