Does Energia stack up as one of the Arduino alternatives?
[featured-image link=”/energia-and-msp430-arduino-alternative.html” single_newwindow=”false” alt=”Energia – An Arduino Alternative”]With all the recent noise around Arduino LLC and Arduino SRL, I felt like I needed a break from Arduino. So I decided to come back to a platform I set aside a while ago: TI’s MSP430.
Previously I wrote it off because of the Windows-centric software. In fact, I made my first “review” video based on it. (I’m a Mac / Linux guy.)
In this post, I’m looking at an open source IDE that’s available called Energia. It makes using the MSP430 series boards a snap. And, by the way, makes for a great Arduino alternative.
What is the MSP430
The MSP430 is a very capable processor. The G2x series feature lower power consumption than an AVR, while also being 16-bit. And if you remember the video game wars in the 90s, 16-bit is way better than 8-bit.
The RAM is a bit smaller than an Uno: only 256 or 512 bytes depending on the chip. My board runs at 1MHz, but 16MHz boards are available.
In addition to the 16-bit boards, there are 32-bit boards available as well–also supported by Energia.
There is a multichannel ADC and a handful of GPIO pins.
On the LaunchPad board there are 2 (not just 1!) programmable LEDs and 1 programmable button. These additions are nice and something I wish Arduino boards would include.
Depending on the board, it may or may not come with pin headers attached. I prefer it to come without. It means an extra step of soldering, but makes using the board more flexible.
Do you want headers? No problem.
Want sockets? You bet.
Going to solder the wires directly to the board? Uh, okay, sure. You can… but why?
What is Energia
This year, I visited the TI booth at CES in Las Vegas. To my surprise, Energia’s name was all over the place. Clearly, TI had embraced this project and not squashed it.
Energia was initially developed by Robert Wessel with the intention of bringing the simplicity of the Arduino platform to the MSP430. And I have to say, it has been successful.
The IDE is based on Wiring, so it looks and operates much like the Arduino IDE. There are plenty of ready-to-compile examples built-in, so learning about the MSP430 is no problem.
The Language
Code is written in C/C++ with a library of functions on top of it. Just like Arduino, the code is compiled with a family-specific version of GCC.
Familiar Arduino functions like digitalWrite(), pinMode(), and delay() will all work. In fact, you can recompile most “Arduino Code” sketches for the MSP430. Just watch the RAM!
Oh and the best part? It is Cross Platform: Windows, Linux, and Mac!
One Caveat
The Arduino team worked very hard to support driverless installation for their boards. Even on Windows, you aren’t installing a driver—just an information file. This low barrier to entry is very popular with non-technical makers.
Unfortunately the USB to Serial chips on the LaunchPads do need drivers to be installed. And much to my annoyance, the OS X installer requires a reboot. (It shouldn’t.) Not painful, but not as seamless as Arduino.
But is it really an Arduino Alternative?
Yes. Now keep in mind that the serial driver and the soldering of pin headers adds a little complexity. The time from opening the box until you blink a LED is slightly longer compared to an Arduino.
However, if you’re a technically minded person, the MSP430 with Energia is pretty easy to get up and running. With how easy Energia makes using the MSP430s, there’s no excuses to not learn more about them.
Reference Links
- Energia Project Links: [http://energia.nu/projects/]
- Energia FAQ: [http://energia.nu/faqs/]
- TI Product Page: [http://www.ti.com/tool/msp-exp430g2]
5 Comments
appears to have quit working on 32-bit windows. Apparently 64-bit ONLY as of about 2015
The LaunchPad MSP430G2 is only one member of the extensive family of LaunchPad supported by Energia.
My favourites are the LaunchPad TM4C with a Cortex-M4F, the LaunchPad CC3200 with Cortex-M4 and integrated WiFi perfect for IoT, and the latest addition, the MSP432 with Energia MT = multi-tasking based on TI-RTOS = the RTOS power with the Wiring / Arduino ease of use.
Read my reviews at http://embeddedcomputing.weebly.com/launchpad-plaform.html
Great writeup BE!
If I could add a shameless plug here, there is an awesome community around the Launchpad Ecosystem and Energia:
http://forum.43oh.com/forum/28-energia/
I have never been an Arduino fan – too use to getting under the hood and having full control. I recently did a project with an MSP430 launchpad – great device, but awful tools. I started with the free tool versions (I think IAR at the time), but soon ran into code size restriction etc. Then moved onto MSP430 GCC and CodeBlocks, which was still painful. I still find it hard to understand why chip manufacturers don’t have unrestricted free tools, what better motivation to get someone to use your device? Energia is very good news, I may have to convert to Arduino after all…
Hi,
I worked with my friend Martin Valencia to run an MQTT example on energia and CC3200 (https://youtu.be/58-Lp38pmnY) – he useda LaunchPad, I used a Yún and we both used Eclipse PaHo as testbed.
And he also made a Temboo integration using energia to send LaunchPad emails from GMail (https://youtu.be/spGMCunyewA).
Jan