Clion Platformio Serial Monitor



Clion platformio serial monitor

  1. CLion and Arduino via Platform.IO. Here's my quick guide to set up CLion to work with the Arduino (and others) platforms. Once you get the gist (pun) of it, you should be fine! Get Platform.IO. Follow the instructions here. Create a new project # Create new folder YourProject mkdir YourProject platformio init -b uno -d YourProject.
  2. CLion is a cross-platform C/C IDE for Linux, OS X, and Windows. CLion includes such features as a smart editor, code generation, code quality assurance, automated refactorings, on-the-fly code analysis, project manager, integrated version control systems and debugger.
  3. Monitorport ΒΆ Type: String Multiple: No. Port, a number or a device name, or valid URL Handlers. See pio device monitor-port. To print all available serial ports please use pio device list command. Please note that you can use Unix shell-style wildcards.
During the recent Q&A session on Reddit, we got a surprising number of questions about our plans for Meson support. Today we are going to show you how you can already use Meson-based projects in CLion. For this we will use compilation database support in CLion.Meson is a relatively new build system that strives to be fast yet simple to use. It converts build scripts written in a Python-like language into one of the backend build systems: Ninja (the default and recommended one), Visual Studio, or Xcode. Recently Meson has started to gain popularity among C++ developers. CLion currently doe

Arduino IDE times

When I start serial monitor it always starts with 9600 baud rate. I'd like to change that, so it always starts with 115200. C arduino esp8266 clion platformio.

Recently i've started to play with Arduino and also different other micro controllers like esp8266.
Originally i've used Arduino IDE to develop and upload sketches to the MCU.
But as a java/javascript software developer i always felt myself unhappy since i could not use my favourite IntelliJ IDEA for this. There is a CLion Arduino plugin present in IntelliJ plugins repository i've tried it but still was unhappy (also i used trial version of CLion since it does not have community version).
But recently i've found such a great project - PlatformIO created by Ivan Kravets from Ukraine which is very great since i'm also from Ukraine.

PlatformIO to the rescue

In short PlatformIO is free and open-source cross-platform code builder and library manager for Arduino with Continuos and IDE integration. It has pre-configured settings for the most Arduino Boards.
The great thing is that it supports not only Arduino but other MCU's as well - you could see list of supported platforms here. Also it does not require installed Arduino IDE - it is completely independent solution: toolchain for specific platform is downloaded and managed by Platformio.
So how to use PlatformIO and how to integrate it with IntelliJ IDEA?
using PlatformIO within IntelliJ IDEA

Installing PlatformIO

First of all we have to install PlarformIO. It uses python and supports most OS which includes Windows, Linux and OSX. I will describe installation under OSX since i'm using this OS, but you could read the official get started section to see how to install it under other platforms. All installation steps should be performed from command line.
So first of all check whether you have installed python package manager pip:
if pip is not installed you could install it by running the following command:

after this lets install PlatformIO by itself:

Creating new project with PlatformIO


Now lets create first project with platformio. Create folder where your test project will be placed, cd to this folder. Then run:
Here i've created project for the Adruino UNO board. If you wish to use other board - you could find it's name using the following command:
And then just find in the command output name of your board (for Arduino boards see atmelavr platforms section). An example output of this command is the following:
Name from type column is what you need to specify in --board parameter.
After initialising your project structure will be the following:
.gitignore - handy if you going to store your project in git cvs.
.travis.yml - for CI integration
lib - place here your libraries
platformio.ini - main configutation file. For now its ok to use defaults here.
src - your sketch should be placed here.

Compiling and uploading sample blink sketch with PlarformIO

lets create sample blink sketch:
  • create file blink.ino in src folder
  • copy blink example into this file:
now we can compile the code by running the following command in the root folder of our sample blink project:
The sample output looks like:
Great! Compilation was sucessful!
Lets upload this sketch to the Arduino UNO board. Attach arduino board to your mac or pc and run the following command:
platformio will try to recognize usb port to which arduino is attached and will upload your sketch to the board.
Thats it!
Clion platformio serial monitor software

IntelliJ IDEA (and CLion as well as other IntelliJ products) integration

So starting from now you do not need Arduino IDE - you could compile and upload your sketches directly via command line!
But wait... what about IntelliJ IDEA integration?
Well integration of PlatformIO with IDEA is far from excellent - unfortunately there is no IDEA plugin for PlatfomIO yet, so let's see what we could do.

Creating IDEA project from PlatformIO project

Choose File->New->Project from Existing Sources...

Then choose root folder of your PlatformIO project:

Then choose 'Create project from existing sources'

Platformio



Then just click next:



Now you could see our project opened:

You could use great IDEA terminal plugin to run PlatformIO commands right from IDEA:

And that's all?
Well there is one more thing we could do - we could use IDEA Ant integration to be able to run basic commands like compile and upload using IDEA build configuration.

Using Ant build file for IDEA build config support

Lets create build.xml file in the project root, and place the following text inside it:


After this we could add these ant targets to build config.
First open Ant plugin toolbar:

Then click on + sign and select build.xml file from the project root:


After this in Ant toolbar you will see available ant commands. You could run them right from the Ant build toolbar window:

Or you could create new build config.
To do this click 'Edit Configurations...' in the main toolbar:

Click + sign to add new configuration and choose 'Ant Target':



Click on a ... button right below build config name - you will see all available ant targets. Choose one you want to execute, for example 'upload':

Clion Platformio Serial Monitor


Then click 'Ok':
After this you will see new Ant build config in the toolbar:


So you could run it. First time you probably get error message that you have no configured JDK for the project. Despite the fact that you do not need JDK, you have to setup it in order to satisfy IDE requirements. Press Cmd+; and choose JDK:

Clion Platformio Serial Monitor Calibration

Clion platformio serial monitor
Then click Ok.
After this you could run your PlatformIO commands right from IDE. You could see command output in the 'Messages' panel:

That's it!
Not so much integration as you would probably expect, but for me it's much more better than using native Arduino IDE.

Clion Platformio Serial Monitor Power Cord

Thanks a lot for reading this long post to the end!
See you later!




Comments are closed.