Transcription of Arduino - Reference
{{id}} {{{paragraph}}}
ArduinoBuy | Download | Getting Started | Learning | Reference | Hardware | FAQ Blog | Forum | Playground Reference Language (extended) | Libraries | Comparison | BoardLanguage ReferenceSee the extended Reference for more advanced features of the Arduino languages and the libraries page for interfacingwith particular types of programs can be divided in three main parts: structure, values (variables and constants), and functions. The Arduinolanguage is based on C/C++.StructureAn Arduino program run in two parts:void setup()void loop()setup() is preparation, and loop() is execution.
pinMode(pin, mode) digitalWrite(pin, value) int digitalRead(pin) Analog I/O int analogRead(pin) ... Random Numbers randomSeed(seed) long random(max) long random(min, max) ... Analog Input Pins 6 (DIP) or 8 (SMD) DC Current per I/O Pin40 mA ATmega8 ...
Domain:
Source:
Link to this page:
Please notify us if you found a problem with this document:
{{id}} {{{paragraph}}}