Main Content

Install Third-Party Software for Arduino Compatible Hardware

R2026b

Using the Hardware Setup screens for the Simulink® Support Package for Arduino® Hardware, you can manually install the third-party software for these Arduino compatible hardware boards.

  • ESP32 — WROOM

  • ESP32 — WROVER

  • ESP32-S3 Series

  • Teensy 4.0

  • Teensy 4.1

  • Raspberry Pi® Pico

  • Raspberry Pi Pico W

Install Arduino Compatible ESP32 Core

While installing the Simulink Support Package for Arduino Hardware as described in Install Support for Arduino Hardware, execute these commands to manually install the core for your Arduino compatible ESP32 hardware boards.

  1. On MATLAB® Command Window, execute this command to get Arduino command line interface (CLI) root path.

    cliPath = codertarget.arduinobase.internal.getArduinoIDERoot
    cliPath =
    
        'C:\aCLI\

  2. On your host terminal, change directory to the CLI path obtained from the above function call.

  3. Add the JSON file to the additional URLs for the Board Manager of the arduino-cli.yaml file. This file is located in the Arduino CLI root path.

    arduino-cli config set board_manager.additional_urls https://espressif.github.io/arduino-esp32/package_esp32_index.json --config-file "arduino-cli.yaml"

  4. Update index of ESP32 core to the latest version.

    arduino-cli core update-index --additional-urls https://espressif.github.io/arduino-esp32/package_esp32_index.json --config-file "arduino-cli.yaml"

  5. Install ESP32 core.

    arduino-cli core install esp32:esp32@2.0.17 --config-file "arduino-cli.yaml"

  6. Make sure that the ESP32 core is installed in the Arduino CLI root path.

    arduino-cli core list --config-file "arduino-cli.yaml"
    ID                   Installed Latest    Name 
    esp32:esp32 2.0.17    2.0.17             esp32

Install Arduino Compatible ESP32 Servo Library

While installing the Simulink Support Package for Arduino Hardware as described in Install Support for Arduino Hardware, execute these commands to manually install the ESP32 servo library for your Arduino compatible ESP32 hardware boards.

  1. On MATLAB Command Window, execute this command to get Arduino command line interface (CLI) root path.

    cliPath = codertarget.arduinobase.internal.getArduinoIDERoot
    cliPath =
    
        'C:\aCLI\

  2. On your host terminal, change directory to the CLI path obtained from the above function call.

  3. Install ESP32 servo library.

    arduino-cli lib install ServoESP32@1.0.3 --config-file "arduino-cli.yaml"

  4. Make sure that the ESP32 servo library is installed in the Arduino CLI root path.

    arduino-cli lib list ServoESP32  --config-file "arduino-cli.yaml"
    Name        Installed    Available    Location    Description
    ServoESP32   1.0.3         1.1.1        user      Generate RC servo signal on a selecte...

Install Arduino Compatible Teensy Core

While installing the Simulink Support Package for Arduino Hardware as described in Install Support for Arduino Hardware, execute these commands to manually install the Teensy core for your Arduino compatible Teensy hardware boards.

  1. On MATLAB Command Window, execute this command to get Arduino command line interface (CLI) root path.

    cliPath = codertarget.arduinobase.internal.getArduinoIDERoot
    cliPath =
    
        'C:\aCLI\

  2. On your host terminal, change directory to the CLI path obtained from the above function call.

  3. Add the JSON file to the additional URLs for the Board Manager of the arduino-cli.yaml file. This file is located in the Arduino CLI root path.

    arduino-cli config set board_manager.additional_urls https://www.pjrc.com/teensy/package_teensy_index.json --config-file "arduino-cli.yaml"
  4. Update index of Teensy core to the latest version.

    arduino-cli core update-index --additional-urls https://www.pjrc.com/teensy/package_teensy_index.json --config-file "arduino-cli.yaml"
  5. Install Teensy core.

    arduino-cli core install teensy:avr@1.58.2 --config-file "arduino-cli.yaml"
  6. Make sure that the Teensy core is installed in the Arduino CLI root path.

    arduino-cli core list --config-file "arduino-cli.yaml"
    ID                   Installed Latest   Name 
    teensy:avr@1.58.2    1.58.2             teensy

Install Arduino Compatible Pico Core

While installing the Simulink Support Package for Arduino Hardware as described in Install Support for Arduino Hardware, execute these commands to manually install the Pico core for your Arduino compatible Pico hardware boards.

  1. On MATLAB Command Window, execute this command to get Arduino command line interface (CLI) root path.

    cliPath = codertarget.arduinobase.internal.getArduinoIDERoot
    cliPath =
    
        'C:\aCLI\

  2. On your host terminal, change directory to the CLI path obtained from the above function call.

  3. Add the JSON file to the additional URLs for the Board Manager of the arduino-cli.yaml file. This file is located in the Arduino CLI root path.

    arduino-cli config set board_manager.additional_urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json --config-file "arduino-cli.yaml"
  4. Update index of Pico core to the latest version.

    arduino-cli core update-index --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json --config-file "arduino-cli.yaml"
  5. Install Pico core.

    arduino-cli core install rp2040:rp2040@3.7.0 --config-file "arduino-cli.yaml"
  6. Make sure that the Pico core is installed in the Arduino CLI root path.

    arduino-cli core list --config-file "arduino-cli.yaml"
    ID                    Installed Latest   Name 
    rp2040:rp2040@3.7.0   3.7.0               rp2040

See Also

|