Difference between revisions of "Arduino"

From Blue-IT.org Wiki

(Sketch)
(HowTos)
Line 21: Line 21:
  
 
* Very good lessons: https://www.youtube.com/channel/UCjDVZ7PHvbp-G_pkVW-yrqw
 
* Very good lessons: https://www.youtube.com/channel/UCjDVZ7PHvbp-G_pkVW-yrqw
 +
* Ardoino Remote Programming: https://github.com/andrewrapp/arduino-remote-uploader
 +
* nRF24L01, Java and a PC: http://neilkolban.com/tech/nrf24l01-java-and-a-pc/

Revision as of 21:09, 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