📜  Arduino草图结构——C编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:34.604000             🧑  作者: Mango

代码示例1
// actions are performed in the functions "setup" and "loop"
// but  no information is reported to the larger program

void setup() {
  // ...
}

void loop() {
  // ...
}