Local device¶
How to use your own board for testing?¶
Look up your board, platform, framework info here: https://platformio.org/boards
Set the env, platform, board and framework of your device in your platformio.ini
Example:
[env:megaatmega2560] platform = atmelavr board = megaatmega2560 framework = arduino build_flags = -Ilib/testing/inc -Llib/testing -llibtestingThen you can to use the PlatformIO: Test feature to test locally
![]()