“PPM.beginRead()”的版本间的差异
(创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''PPM.beginRead(Pin)'''</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> 初始...”) |
|||
第31行: | 第31行: | ||
<br> | <br> | ||
<br> | <br> | ||
− | + | ||
+ | [[PPM_Reference |返回PPM_Reference页面]] |
2017年7月26日 (三) 05:20的版本
PPM.beginRead(Pin)
描述 初始化PPM解码,并且配置引脚。 参数
返回值 无 示例 #include "Microduino_PPM.h"
PPM PPM; //创建PPM实例,名称为PPM
#define INPUT_PIN 2 //必须为中断脚
void setup() {
PPM.beginRead(INPUT_PIN); //必须为中断脚
}
其他 |