arduino编程代码结构
void setup() {
// 这里开始写初始化代码,只会执行一次
}
void loop() {
//这里写运行代码,重复执行
}
//可以看成如下代码
void main(){
wat
2019-04-06