ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

arduino-cli

Arduino Build System for Sublime Text 3

Details

Installs

  • Total 22K
  • Win 14K
  • Mac 4K
  • Linux 4K
Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12 Jun 11 Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 1 0 2 1 1 0 0 0 2 0 0 1 0 1 2 0 0 1 0 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Arduino Build System for Sublime Text 3

Utilizes the Arduino command line interface and as such requires Arduino to be installed.

NOTE - If you're updating from v0.0.3 you may need to alter your path to the Arduino executable, instead of the Arduino folder as in previous versions. See below for examples.

INSTALL

Use Package Control to install. Within Sublime Text, bring up the Command Palette and type install. Among the commands you should see Package Control: Install Package. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins. When the plugin list appears, type arduino-cli

USE

While viewing a .ino/.cpp/.h file in an Arduino project directory, use Command + B (or Ctrl+B) to build and upload the sketch to your board. Command + Shift + B (or Ctrl+Shift+B) lets you select to just build.

SETTINGS

Settings include: * path - The path to the Arduino executable, may include wildcards. eg /Applications/Arduino.app/Contents/MacOS/Arduino or “C:\Program Files*\Arduino\arduino_debug.exe” * board - (optional) The package:arch:board. See the Arduino CLI docs. eg arduino:avr:uno * port - (optional) The serialport to upload with. eg /dev/tty.usbmodem1411 * sketchbook.path - (optional) The directory to look for additonal libraries and architectures in. eg /Users/jacobrosenthal/Documents/firmware-pinoccio/

All settings are optional with Path being set internally to likely candidate based on OS. If board and port are not specified, the arduino executable will pull the settings from those last set in the graphical IDE. However you may wish to override

You can set them two places. Use Tool->Arduino->Open User Settings. This is an example override configuration for OS X:

{
  "path": "/Applications/Arduino.app/Contents/MacOS/Arduino",
  "board": "arduino:avr:uno",
  "port": "/dev/tty.usbmodem1421"
}

Or you can override sublime's settings on a per project basis by adding this to the root folder with the file name whatever.sublime-project and then open it to launch your project in Sublime

{
  "folders":
  [
    {
      "path": "."
    }
  ],
  "settings":
  {
    "path": "/Applications/Arduino.app/Contents/MacOS/Arduino",
    "board": "arduino:avr:uno",
    "port": "/dev/tty.usbmodem1421",
    "sketchbook.path": "/Users/jacobrosenthal/Documents/Arduino"
  }
}

TODO

Sadly I dont have the regex working yet to bring console messages into the status bar. See this issue if you think you can help