语言参考

Arduino编程主要可以分为三个主要的部分:functions(函数)、values(variables(变量) 和 constants(常量))以及structure(语言元素)

FUNCTIONS(函数)

它是用来控制Arduino板卡,或者执行一些计算机指令。

VARIABLES(变量)

Arduino中的数据类型和常量(constants)

语言特性

Arduino代码要素基于(C++)

 
 
Further Syntax
#define (define) 
#include (include) 
/* */ (block comment) 
// (single line comment) 
(semicolon) 
{} (curly braces) 
 
Arithmetic Operators
(remainder) 
(multiplication) 
(addition) 
– (subtraction) 
(division) 
(assignment operator) 
Comparison Operators
!= (not equal to) 
(less than) 
<= (less than or equal to) 
== (equal to) 
(greater than) 
>= (greater than or equal to) 
Boolean Operators
(logical not) 
&& (logical and) 
|| (logical or) 
Pointer Access Operators
(reference operator) 
(dereference operator) 
Bitwise Operators
(bitwise and) 
<< (bitshift left) 
>> (bitshift right) 
(bitwise xor) 
(bitwise or) 
(bitwise not) 
Compound Operators
%= (compound remainder) 
&= (compound bitwise and) 
*= (compound multiplication) 
++ (increment) 
+= (compound addition) 
— (decrement) 
-= (compound subtraction) 
/= (compound division) 
^= (compound bitwise xor) 
|= (compound bitwise or)