“Number.begin()”的版本间的差异
(创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">NumberLED: begin()</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> 开启串行...”) |
(没有差异)
|
2017年7月6日 (四) 05:22的版本
NumberLED: begin()
描述 开启串行通讯。 参数 通信波特率9600。 返回值 无 示例 #include "Microduino_Number.h"
#define NUM 4
NumberLED LED(NUM, &Serial); //创建数码管实例,名称为LED,
void setup() {
LED.begin(); //开启串行通讯
}
其他 |