Difference between revisions of "Arduino Syntax Manual"

From Microduino Wiki
Jump to: navigation, search
(Created page with "{{Language|Arduino Syntax Manual}} {| style="width: 800px;" |- | *'''Programs of Arduino can be divided into three main parts:Structures, variables(variables and constant...")
 
 
(3 intermediate revisions by the same user not shown)
Line 46: Line 46:
 
**'''Boolean Operators'''
 
**'''Boolean Operators'''
 
***'''[[&& (Logical AND)]]'''
 
***'''[[&& (Logical AND)]]'''
***'''[[|| (Logical OR)]]'''
+
***'''[[OR ||| (Logical or)]]'''
 
***'''[[!  (Logical negation)]]'''
 
***'''[[!  (Logical negation)]]'''
 
**'''Pointer Access Operators'''
 
**'''Pointer Access Operators'''
Line 52: Line 52:
 
***'''[[&Address of]]'''
 
***'''[[&Address of]]'''
 
**'''Bitwise Operators'''
 
**'''Bitwise Operators'''
***'''[[& (Bitwise AND)]]'''
+
***'''[[& (Bitwise and)]]'''
***'''[[(Bitwise OR)]]'''
+
***'''[[Bitwise or | |(bitwise or)]]'''
***'''[[^ (Bitwise XOR)]]'''
+
***'''[[^ (Bitwise xor)]]'''
***'''[[~ (Bitwise NOT)]]'''
+
***'''[[~ (Bitwise not)]]'''
***'''[[<< (Bitwise left shift)]]'''
+
***'''[[Bitwise left shift |<< (bitwise left shift)]]'''
***'''[[>> (Bitwise right shift)]]'''
+
***'''[[Bitwise right shift|>> (bitwise right shift)]]'''
 
**'''Compound Operators'''
 
**'''Compound Operators'''
 
***'''[[++ (Self-add)]]'''
 
***'''[[++ (Self-add)]]'''

Latest revision as of 03:01, 11 August 2016

Language: English  • 中文
  • Programs of Arduino can be divided into three main parts:Structures, variables(variables and constants) and functions