Thursday, July 28, 2016

How to Install Arduino IDE 1.6.10 on Ubuntu

    Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Arduino boards are able to read inputs - light on a sensor, a finger on a button, or a Twitter message - and turn it into an output - activating a motor, turning on an LED, publishing something online. You can tell your board what to do by sending a set of instructions to the microcontroller on the board.
 

Arduino IDE 1.6.10 Changelog

[ide]
  • A lot of bugfixes to builder
  • Libraries can now define the property "includes" in the library.properties to  tell the IDE which `#include <...>` lines should be added to the sketch when  the "Include library" command is used.
  • Examples are now filtered by architecture
  • Added more graceful handling of upload failures
  • Solved a bug that crashed the IDE with some exotic serial devices
[core]
  • avr: toolchain updated to latest Atmel release 3.5.3   The updated tools are now binutils-2.26, gcc-4.9.2, avr-libc-2.0.0, gdb-7.8
  • avr: avrdude updated to version 6.3
  • fixed a small bug that caused a compile error on some 3rd party derivatives boards based on Leonardo
  • sam: added snprintf_P to avr/pgmspace.h stub.
  • avr: Fix TX buffer being overwritten by multiple Wire.write(...) calls in slave mode.
  • Another small fix to String iterators.
  • Added getTimeout() method to Stream.
  • avr: Fixed USB wakeup event handling, this solves some rare lockups of serial port on some linux distributions
  • Speed and size improvement on Print::printFloat(..).
  • avr: Added Serial.availableForWrite() for USB-CDC serial ports
  • avr: Added PIN_* defines to all board variants

Installation instructions:

1. Download the latest packages, Linux 32-bit or Linux 64-bit, from the official link below:  www.arduino.cc/en/Main/Software

2. Open terminal from Unity Dash, App Launcher, or via Ctrl+Alt+T keys. When it opens, run below commands one by one:

$ cd ~/Downloads

$ tar -xvf arduino-1.6.10-*.tar.xz

$ sudo mv arduino-1.6.10 /opt

$ cd /opt/arduino-1.6.10/

$ chmod +x install.sh

$ ./install.sh


Finally, launch Arduino IDE from Unity Dash, Application Launcher, or via Desktop shortcut.


No comments:

Post a Comment