“Setup()”的版本间的差异
第1行: | 第1行: | ||
*'''setup()''' | *'''setup()''' | ||
− | + | 在Arduino中程序运行时将首先调用 setup() 函数 | |
− | + | 用于初始化变量、设置针脚的输出\输入类型、配置串口、引入类库文件等等 | |
− | + | 每次 Arduino 上电或重启后,setup 函数只运行一次 | |
− | * | + | *'''示例''' |
<pre style="color:green"> | <pre style="color:green"> | ||
int buttonPin = 3; | int buttonPin = 3; |
2016年5月20日 (五) 03:39的版本
- setup()
在Arduino中程序运行时将首先调用 setup() 函数 用于初始化变量、设置针脚的输出\输入类型、配置串口、引入类库文件等等 每次 Arduino 上电或重启后,setup 函数只运行一次
- 示例
int buttonPin = 3; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } void loop() { // ... }