Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 982 Bytes

FAQ.md

File metadata and controls

27 lines (17 loc) · 982 Bytes

Arduino Uno/Mega/Duemilanove is not detected

When you run arduino-cli board list, your board doesn't show up. Possible causes:

  • Your board is a cheaper clone, or
  • It mounts a USB2Serial converter like FT232 or CH340: these chips always report the same USB VID/PID to the operating system, so the only thing we know is that the board mounts that specific USB2Serial chip, but we don’t know which board that chip is on.

What's the FQBN string?

For a deeper understanding of how FQBN works, you should understand the Arduino platform specification.

How to set multiple board options?

Additional board options have to be separated by commas (instead of colon):

$ arduino-cli compile --fqbn "esp8266:esp8266:generic:xtal=160,baud=57600" TestSketch

Additional assistance

If your question wasn't answered, feel free to ask on Arduino CLI's forum board.