For controlling the Arduino board and performing computations. Digital I/O digitalRead() digitalWrite() pinMode() Analog I/O analogRead() analogReference() analogWrite() Zero, Due & MKR Family analogReadResolution() analogWriteResolution() Advanced I
Arduino programs can be divided in three main parts: structure, values (variables and constants), and functions. Structure • setup() 每次 Arduino 上电或重启后,setup 函数只运行一次,用于初始化变量.设置针脚的输出\输入类型.配置串口.引入类库文件等等 • loop() 该函数在程序运行过程中不断的循环 Control S
Arduino语言介绍 Arduino语言是建立在C/C++基础上的,其基础是C语言,Arduino语言只不过把AVR单片机(微控制器)相关的一些参数设置都函数化,不用我们去了解他的底层,让不了解AVR单片机(微控制器)的朋友也能轻松上手. 基础C语言 关键字: if 条件选择语句 if...else 条件选择语句 for for 循环语句 switch case 并行多分支选择 while 循环语句 do