PlatformIO IDE for Atom

PlatformIO IDE is the next-generation integrated development environment for IoT.


Atom is a text editor that’s modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file.

../../_images/ide-atom-platformio.png

Installation

Note

Please note that you do not need to install PlatformIO Core (CLI) separately if you are going to use PlatformIO IDE for Atom. PlatformIO Core (CLI) is built into PlatformIO IDE and you will be able to use it within PlatformIO IDE Terminal.

Also, PlatformIO IDE allows one to install PlatformIO Core (CLI) Shell Commands (pio, platformio) globally to your system via Menu: PlatformIO > Install Shell Commands.

I. Atom

  1. Download and install GitHub’s official Atom text editor. PlatformIO IDE is built on top of it.

  2. Open Atom Package Manager

  • Mac OS X, Menu: Atom > Preferences > Install

  • Windows, Menu: File > Settings > Install

  • Linux, Menu: Edit > Preferences > Install

  1. Search for the official platformio-ide package

  2. Install PlatformIO IDE.

../../_images/ide-atom-pkg-installer.png

II. Clang for Intelligent Code Completion

PlatformIO IDE uses Clang for the Intelligent Code Completion. To check that clang is available in your system, please open Terminal and run clang --version. If clang is not installed, then install it and restart Atom:

  • Mac OS X: Install the latest Xcode along with the latest Command Line Tools (they are installed automatically when you run clang in Terminal for the first time, or manually by running xcode-select --install

  • Windows: Download Clang 3.9.1 for Windows. Please select “Add LLVM to the system PATH” option on the installation step.

    ../../_images/clang-installer-add-path.png

    Warning

    PLEASE DO NOT INSTALL CLANG 4.0. TEMPORARILY, WE SUPPORT ONLY CLANG 3.9.

    If you see a Failed to find MSBuild toolsets directory error in the installation console, please ignore it and press any key to close this window. PlatformIO IDE uses only the Clang completion engine, which should work after that without any problems.

  • Linux: Using package managers: apt-get install clang or yum install clang.

  • Other Systems: Download the latest Clang for the other systems.

Warning

If some libraries are not visible in PlatformIO IDE for Atom and Code Completion or Code Linting does not work properly, please perform Menu: PlatformIO > Rebuild C/C++ Project Index (Autocomplete, Linter)

Quick Start

This tutorial introduces you to the basics of PlatformIO IDE workflow and shows you the creation process for a simple “Blink” example. After finishing, you will have a general understanding of how to work with projects in the IDE.

Launch

After installation, launch PlatformIO IDE by opening Atom. Once Atom is opened, the PlatformIO IDE auto installer will continue to install dependent packages and PlatformIO Core (CLI). Please be patient and let the installation complete. Once finished, PlatformIO IDE will ask you to reload the Atom window to apply installed components. Please click on Reload Now. After that, PlatformIO IDE is ready for use. Happy coding!

Setting Up the Project

  1. Click on the “PlatformIO Home” button on the PlatformIO Toolbar

../../_images/ide-atom-welcome.png
  1. Click on “New Project”, select a board and create a new PlatformIO Project

../../_images/ide-atom-new-project.png
  1. Open the main.cpp file in the src folder and replace its contents with the following:

Warning

The code below only works with Arduino-based boards. Please visit the PlatformIO Project Examples repository for other pre-configured projects.

/**
 * Blink
 *
 * Turns on an LED on for one second,
 * then off for one second, repeatedly.
 */
#include "Arduino.h"

// Set LED_BUILTIN if it is not defined by Arduino framework
// #define LED_BUILTIN 13

void setup()
{
  // initialize LED digital pin as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

void loop()
{
  // turn the LED on (HIGH is the voltage level)
  digitalWrite(LED_BUILTIN, HIGH);

  // wait for a second
  delay(1000);

  // turn the LED off by making the voltage LOW
  digitalWrite(LED_BUILTIN, LOW);

   // wait for a second
  delay(1000);
}
../../_images/ide-atom-blink-project.png

Process Project

PlatformIO IDE proposes different ways to process the project (build, clean, upload firmware, run other targets) using:

../../_images/ide-atom-process-project.png
  1. Run Build and you should see a green “success” result in the build panel:

../../_images/ide-atom-build-project.png

To upload firmware to the board, run Upload.

  1. What is more, you can run specific target or process project environment using Menu: PlatformIO > Run other target... or call targets list from the status bar (bottom, left corner):

../../_images/ide-atom-quick-start-8.png

And select desired target:

../../_images/ide-atom-quick-start-9.png
  1. To launch the built-in terminal interface, choose Menu: PlatformIO > Terminal or press the corresponding icon in the PlatformIO toolbar:

../../_images/ide-atom-quick-start-10.png

This provides you fast access to a set of powerful PlatformIO Core (CLI) CLI commands:

../../_images/ide-atom-quick-start-11.png
  1. To run the built-in “Serial Monitor”, choose Menu: PlatformIO > Serial Monitor or press the corresponding icon in the PlatformIO toolbar:

../../_images/ide-atom-quick-start-12.png

The monitor has several settings to adjust your connection:

../../_images/ide-atom-quick-start-13.png

It also allows you to communicate with your board in an easy way:

../../_images/ide-atom-quick-start-14.png

PlatformIO Toolbar

PlatformIO IDE Toolbar contains quick access buttons for the popular commands. Each button contains a hint (leave the mouse on it for a moment).

../../_images/ide-atom-toolbar.png

Building / Uploading / Targets

  • cmd-alt-b / ctrl-alt-b / f9 builds project without auto-uploading.

  • cmd-alt-u / ctrl-alt-u builds and uploads (if no errors).

  • cmd-alt-c / ctrl-alt-c cleans compiled objects.

  • cmd-alt-t / ctrl-alt-t / f7 run other targets (Upload using Programmer, Upload SPIFFS image, Update platforms and libraries).

  • cmd-alt-g / ctrl-alt-g / f4 cycles through causes of build error.

  • cmd-alt-h / ctrl-alt-h / shift-f4 goes to the first build error.

  • cmd-alt-v / ctrl-alt-v / f8 toggles the build panel.

  • escape terminates build / closes the build window.

More options: Menu: PlatformIO > Settings > Build.

Intelligent Code Completion

PlatformIO IDE uses clang for the Intelligent Code Completion. To install it or check if it is already installed, please follow see the step II. Clang for Intelligent Code Completion from Installation guide.

Warning

The libraries which are added/installed after the initializing process will not be reflected in the code linter. You need Menu: PlatformIO > Rebuild C/C++ Project Index (Autocomplete, Linter).

Smart Code Linter

PlatformIO IDE uses PlatformIO’s pre-built GCC toolchains for Smart Code Linter and rapid professional development. The configuration data are located in .gcc-flags.json. This file will be automatically created and preconfigured when you initialize project using Menu: PlatformIO > Initialize new PlatformIO Project or update existing....

Warning

If some libraries are not visible in PlatformIO IDE for Atom and Code Completion or Code Linting does not work properly, please perform Menu: PlatformIO > Rebuild C/C++ Project Index (Autocomplete, Linter)

Install Shell Commands

Please navigate to PIO Core Install Shell Commands.

Known issues

Smart Code Linter is disabled for Arduino files

Smart Code Linter is disabled by default for Arduino files (*.ino and .pde) because they are not valid C/C++ based source files:

  1. Missing includes such as #include <Arduino.h>

  2. Function declarations are omitted.

There are two solutions:

Force Arduino file as C++

To force Smart Code Linter to use Arduino files as C++ please

  1. Open .gcc-flags.json file from the Initialized/Imported project and add -x c++ flag at the beginning of the value of gccDefaultCppFlags field:

{
  "execPath": "...",
  "gccDefaultCFlags": "...",
  "gccDefaultCppFlags": "-x c++ -fsyntax-only ...",
  "gccErrorLimit": 15,
  "gccIncludePaths": "...",
  "gccSuppressWarnings": false
}
  1. Perform all steps from Convert Arduino file to C++ manually (without renaming to .cpp).

Warning

Please do not modify other flags here. They will be removed on a next “Project Rebuild C/C++ Index” stage. Please use build_flags for “platformio.ini” (Project Configuration File) instead.

Frequently Asked Questions

Keep build panel visible

PlatformIO IDE hides build panel on success by default. Nevertheless, you can keep it visible all time. Please follow to Menu: PlatformIO > Settings > Build and set Panel Visibility to Keep Visible.

Key-bindings (toggle panel):

  • cmd+alt+v - Mac OS X

  • ctrl+alt+v - Windows/Linux

Automatically save on build

If you want automatically save all edited files when triggering a build, please follow to Menu: PlatformIO > Settings > Build and check Automatically save on build.

Jump to Declaration

Click on a function/include, press F3 and you will be taken directly to the declaration for that function.

Uninstall Atom with PlatformIO IDE

Here’s how to uninstall the PlatformIO IDE for multiple OS.

See Uninstall PIO Core and dependent packages, if you do not need it in a system.

Windows

  1. Uninstall Atom using “Start > Control Panel > Programs and Features > Uninstall”

  2. Remove C:\Users\<user name>\.atom folder (settings, packages, etc…)

  3. Remove C:\Users\<user name>\AppData\Local\atom folder (application itself)

  4. Remove C:\Users\<user name>\AppData\Roaming\Atom folder (cache, etc.)

  5. Remove registry records using regedit:

    • HKEY_CLASSES_ROOT\Directory\Background\shell

    • HKEY_CLASSES_ROOT\Directory\shell

    • HKEY_CLASSES_ROOT*\shell

macOS

Run these commands in system Terminal

rm -rf ~/.atom
rm /usr/local/bin/atom
rm /usr/local/bin/apm
rm -rf /Applications/Atom.app
rm ~/Library/Preferences/com.github.atom.plist
rm ~/Library/Application\ Support/com.github.atom.ShipIt
rm -rf ~/Library/Application\ Support/Atom
rm -rf ~/Library/Saved\ Application\ State/com.github.atom.savedState
rm -rf ~/Library/Caches/com.github.atom
rm -rf ~/Library/Caches/Atom

Linux

Run these commands in system Terminal

rm /usr/local/bin/atom
rm /usr/local/bin/apm
rm -rf ~/atom
rm -rf ~/.atom
rm -rf ~/.config/Atom-Shell
rm -rf /usr/local/share/atom/

Articles / Manuals

See a full list with Articles about us.

Changelog

Please visit releases page.