Difference between revisions of "Arduino"

From Blue-IT.org Wiki

(Sketch)
(Sketch)
Line 1: Line 1:
 
== Sketch ==
 
== Sketch ==
 +
Cited from ...
 +
 
* http://linuxdaddy.com/blog/install-arduino-ide-on-ubuntu/
 
* http://linuxdaddy.com/blog/install-arduino-ide-on-ubuntu/
 +
 +
Thanks!
  
 
You have to add the Ubuntu Make PPA, update the local repository index, install ubuntu-make and run the umake command for installing arduino:
 
You have to add the Ubuntu Make PPA, update the local repository index, install ubuntu-make and run the umake command for installing arduino:
  
$ sudo apt-add-repository ppa:ubuntu-desktop/ubuntu-make
+
sudo apt-add-repository ppa:ubuntu-desktop/ubuntu-make
$ sudo apt-get update
+
sudo apt-get update
$ sudo apt-get install ubuntu-make
+
sudo apt-get install ubuntu-make
$ sudo umake ide arduino
+
sudo umake ide arduino
  
 
Optional, to remove Arduino IDE, do:
 
Optional, to remove Arduino IDE, do:
  
$ umake ide arduino --remove
+
umake ide arduino --remove
$ sudo apt-get remove ubuntu-make
+
sudo apt-get remove ubuntu-make
  
 
== HowTos ==
 
== HowTos ==
  
 
* Very good lessons: https://www.youtube.com/channel/UCjDVZ7PHvbp-G_pkVW-yrqw
 
* Very good lessons: https://www.youtube.com/channel/UCjDVZ7PHvbp-G_pkVW-yrqw

Revision as of 20:50, 17 June 2016

Sketch

Cited from ...

Thanks!

You have to add the Ubuntu Make PPA, update the local repository index, install ubuntu-make and run the umake command for installing arduino:

sudo apt-add-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make
sudo umake ide arduino

Optional, to remove Arduino IDE, do:

umake ide arduino --remove
sudo apt-get remove ubuntu-make

HowTos