| Live Docs | Documentation | Dashboard Guide | Build & Flash | Plugin System | Release Notes | Community Discord |
An open-source CAN bus modification tool for supported vehicles and ESP32/Feather CAN hardware. The firmware sits on the vehicle CAN bus, watches the frames it cares about, modifies the required bits or bytes, and retransmits the result in real time.
ESP32 dashboard builds add a local web interface for runtime dashboard control, CAN diagnostics, plugins, WiFi management, and OTA firmware updates.
Warning: Modifying CAN bus traffic can cause dangerous behavior or permanently damage a vehicle. The CAN bus touches safety-critical systems including steering, braking, airbags, and gateway functions. If you do not fully understand the frames you are changing, do not install or use this firmware on a vehicle.
This project is for testing and educational use only. You are responsible for complying with local laws, safety requirements, and any warranty or road-use implications in your jurisdiction.
.bin upload| PlatformIO env | Board / target | CAN interface | Dashboard |
|---|---|---|---|
feather_rp2040_can |
Adafruit Feather RP2040 CAN | MCP2515 | No |
feather_m4_can |
Adafruit Feather M4 CAN Express | Native CAN | No |
esp32_twai |
Generic ESP32 dev board | TWAI | Yes |
lilygo_tcan485_hw3 |
LILYGO TCAN485 | TWAI | Yes |
m5stack-atomic-can-base |
M5Stack Atom CAN Base | TWAI | Yes |
m5stack-atoms3-mini-can-base |
M5Stack AtomS3 Mini CAN Base | TWAI | Yes |
esp32_feather_v2_mcp2515 |
Feather ESP32 V2 + external MCP2515 | SPI MCP2515 | Yes |
esp32_ext_mcp2515 |
ESP32-S3 + external MCP2515 | SPI MCP2515 | Yes |
waveshare_ESP32_S3_RS485_CAN |
Waveshare ESP32-S3 RS485/CAN | TWAI | Yes |
ESP32 dashboard builds are the full-featured path: they include the web UI, plugin engine, WiFi, OTA, and persistent runtime settings. Non-dashboard builds keep the core CAN modification logic but do not expose the web management interface.
platformio.ini.platformio_profile.h.pio run -e esp32_ext_mcp2515
pio run -e esp32_ext_mcp2515 -t upload
DASH_SSID / DASH_PASS and open http://192.168.4.1/.For a fuller setup flow and board-specific notes, see Build & Flash.
VERSION using Semantic Versioning.CHANGELOG.md.Unreleased section before merge.This project depends on the following open-source libraries. Their full license texts are in THIRD_PARTY_LICENSES.
| Library | License | Copyright |
|---|---|---|
| autowp/arduino-mcp2515 | MIT | (c) 2013 Seeed Technology Inc., (c) 2016 Dmitry |
| adafruit/Adafruit_CAN | MIT | (c) 2017 Sandeep Mistry |
| espressif/esp-idf (TWAI driver) | Apache 2.0 | (c) 2015-2025 Espressif Systems (Shanghai) CO LTD |
| bblanchon/ArduinoJson | MIT | (c) 2014-2024 Benoit BLANCHON |
This project is licensed under the GNU General Public License v3.0 — see the GPL-3.0 License for details.