Dokumentacja języka
Język programowania Arduino można podzielić na trzy główne części: funkcje, wartości (zmienne i stałe) oraz strukturę.
funkcje
Do sterowania płytą Arduino i wykonywania obliczeń.
Cyfrowe We/Wy
Analogowe We/Wy
zmienne
typy danych i stałe Arduino
Stałe
HIGH | LOWINPUT | OUTPUT | INPUT_PULLUP
LED_BUILTIN
true | false
Integer Constants
Stałe zmiennoprzecinkowe
struktura
Elementy kodu Arduino (C++).
Szkic
Składnia
#define (define)#include (include)
/* */ (block comment)
// (single line comment)
; (semicolon)
{} (curly braces)
Operatory arytmetyczne
Operatory porównania
Operatory logiczne
Operatory bitowe
& (bitwise and)<< (bitshift left)
>> (bitshift right)
^ (bitwise xor)
| (bitwise or)