Activity › Forums › Questions & Troubleshooting › Arduino FQBN for Controllino boards?
-
Arduino FQBN for Controllino boards?
-
I like to setup my development environment using arduino-cli but have trouble finding the correct FQBN (Fully Qualified Board Name) for the Controllino MAXI Automation.
I can select the board in the IDE OK but there the board is shown as “CONTROLLINO MAXI Automation” but a FQBN seems to be all lower cases and no spaces. Like for a mega board the FQBN is
arduino:avr:mega
in which the first partarduino:avr
specified the platform.I hunted through the library files and a name like ‘controllino_maxi_automation’ seems plausible as a name in which I assumed the FQBN to be something like
arduino:avr:controllino_maxi_automation
but it still gives me errors.If I use
mega
as the board name, I get a different error from the Controllino.h file to select the correct board.Where can I find what the FQBN for the controllino boards are?
-
I have figured it out. I need a configuration like below:
SKETCH := TestController
BOARD := controllino_maxi_automation
PORT := /dev/ttyACM0
CORES := CONTROLLINO_Boards:avr arduino:avr
LIBRARIES := CONTROLLINO
ADDITIONAL_URLS := https://raw.githubusercontent.com/CONTROLLINO-PLC/CONTROLLINO_Library/master/Boards/package_ControllinoHardware_index.json
Log in to reply.