Local device

How to use your own board for testing?

  1. Look up your board, platform, framework info here: https://platformio.org/boards

  2. 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 -llibtesting
    
  3. Then you can to use the PlatformIO: Test feature to test locally

    local testing