Setup()

来自Labplus盛思维基百科
跳转至: 导航搜索

setup()

在Arduino中程序运行时将首先调用 setup() 函数用于初始化变量、设置针脚的输出\输入类型、配置串口、引入类库文件等等。

每次 Arduino 上电或重启后,setup 函数只运行一次。


示例

int buttonPin = 3;
void setup()
{
  Serial.begin(9600);
  pinMode(buttonPin, INPUT);
}
void loop()
{
  // ...
}