Arduino: Difference between revisions

From CoMakingSpace Wiki

No edit summary
(no deletion rights, so I have to move the page like this... Move from Category:Arduino)
Tag: Removed redirect
Line 1: Line 1:
#REDIRECT[[:Category:Arduino]]
"Arduino" as a term reflects a platform of integrated hardware and correspondend software development kits.
 
==Hardware==
From a hardware perspective, Arduino [[https://store.arduino.cc/ offers]] a range of electronic boards, which can be used for the easy setup and control of circuits. Arduino boards are basically boards with different kinds of Atmel AVR [[Microcontroller]]s and some attached electronics (such as [[USB Serial Converters]], power supply units and pins to access the GPIO Pins of the Atmel AVR).
 
==Software==
From a software perspective, Arduino offers multiple tools and a software development kit.
 
==Development==
In case you want to develop your own software for an Arduino, you can use most of the tools mentioned on the [[Microcontroller]] page.
 
We are also documenting problems (and solutions!) on an "[[Arduino Debugging]]" page.
 
If you are looking for information about certain functions or variables, the [https://www.arduino.cc/reference/en/ Arduino Reference] is a great place to start.
 
== Power Supply ==
You can power Arduino boards in various ways, many of which are summarized [https://www.open-electronics.org/the-power-of-arduino-this-unknown/ here].
 
== Project Ideas ==
* [http://www.instructables.com/id/A-Beginners-Guide-to-Arduino/ beginner's guide on Instructables]
* control old hardware, e.g. [http://michaelteeuw.nl/post/174972004187/what-time-is-it-fathers-day clock made from a voltmeter]
 
 
[[Category:Electronics]]
[[Category:Microcontrollers]]
[[Category:Programming]]

Revision as of 22:43, 22 July 2019

"Arduino" as a term reflects a platform of integrated hardware and correspondend software development kits.

Hardware

From a hardware perspective, Arduino [offers] a range of electronic boards, which can be used for the easy setup and control of circuits. Arduino boards are basically boards with different kinds of Atmel AVR Microcontrollers and some attached electronics (such as USB Serial Converters, power supply units and pins to access the GPIO Pins of the Atmel AVR).

Software

From a software perspective, Arduino offers multiple tools and a software development kit.

Development

In case you want to develop your own software for an Arduino, you can use most of the tools mentioned on the Microcontroller page.

We are also documenting problems (and solutions!) on an "Arduino Debugging" page.

If you are looking for information about certain functions or variables, the Arduino Reference is a great place to start.

Power Supply

You can power Arduino boards in various ways, many of which are summarized here.

Project Ideas