“PPM.beginRead()”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
(创建页面,内容为“{| 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>
<p style="font-size:115%">[[Sensor_Number_Reference|返回Sensor_Number_Reference界面]]</p>
+
 
 +
[[PPM_Reference |返回PPM_Reference页面]]

2017年7月26日 (三) 05:20的版本

PPM.beginRead(Pin)


描述

初始化PPM解码,并且配置引脚。

参数

  • Pin:设置PPM解码的接收引脚,不填则默认为D2。

返回值

示例

#include "Microduino_PPM.h"

PPM PPM;  //创建PPM实例,名称为PPM

#define INPUT_PIN 2	//必须为中断脚

void setup() {
  PPM.beginRead(INPUT_PIN); //必须为中断脚
}

其他



返回PPM_Reference页面