Difference between revisions of "Arduino"

From Blue-IT.org Wiki

(HowTos)
(HowTo List)
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Sketch ==
+
== Arduino IDE ==
Cited from ...
+
* Official: https://www.arduino.cc/en/Main/Software
  
 +
The (fast!) Ubuntu-way via ppa (cited from ... thanks!):
 
* 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:
Line 18: Line 17:
 
  sudo apt-get remove ubuntu-make
 
  sudo apt-get remove ubuntu-make
  
== HowTos ==
 
  
* Very good lessons: https://www.youtube.com/channel/UCjDVZ7PHvbp-G_pkVW-yrqw
+
=== More about Ubuntu-Make ===
* Ardoino Remote Programming (general): https://github.com/andrewrapp/arduino-remote-uploader
+
* https://wiki.ubuntu.com/ubuntu-make
* Ardoino Remote Programming (nRF24L01):* https://medium.com/@nowir3s/nordic-nrf24l01-with-arduino-b822dbac7e74#.u90xgmocz
+
* https://github.com/ubuntu/ubuntu-make
 +
 
 +
== Arduino prototyping and simulation ==
 +
* http://www.smashingrobotics.com/arduino-simulators-lineup-start-developing-without-real-board/
 +
 
 +
Free:
 +
* Prototyping: '''Fritzing''' (free and pensource program): http://fritzing.org/home
 +
* Prototyping and Virtualisation: '''123d''' (free online service)''': https://123d.circuits.io/lab
 +
 
 +
Commercial (to power up a simulation you need a license):
 +
* Prototyping and Virtualisation: '''Virtual Breadboard (''commercial'' online service)''': http://www.virtualbreadboard.com
 +
 
 +
== HowTo List ==
 +
 
 +
* Great lessons, overview: https://www.youtube.com/channel/UCjDVZ7PHvbp-G_pkVW-yrqw
 +
* Arduino Remote Programming (general): https://github.com/andrewrapp/arduino-remote-uploader
 +
* Arduino Remote Programming (nRF24L01):* https://medium.com/@nowir3s/nordic-nrf24l01-with-arduino-b822dbac7e74#.u90xgmocz
 
* nRF24L01, Java and a PC: http://neilkolban.com/tech/nrf24l01-java-and-a-pc/
 
* nRF24L01, Java and a PC: http://neilkolban.com/tech/nrf24l01-java-and-a-pc/
 +
 +
 +
[[Category:Arduino]]

Latest revision as of 14:02, 31 January 2021

Arduino IDE

The (fast!) Ubuntu-way via ppa (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


More about Ubuntu-Make

Arduino prototyping and simulation

Free:

Commercial (to power up a simulation you need a license):

HowTo List