“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> 初始...”) |
|||
(未显示同一用户的4个中间版本) | |||
第2行: | 第2行: | ||
|- | |- | ||
| | | | ||
− | <p style="color: #666666;font-size:220%">'''PPM.beginRead(Pin)'''</p> | + | <p style="color: #666666;font-size:220%">'''PPM.beginRead(byte Pin)'''</p> |
<br> | <br> | ||
<p style="color: #E87E05;font-size:135%">描述</p> | <p style="color: #E87E05;font-size:135%">描述</p> | ||
初始化PPM解码,并且配置引脚。 | 初始化PPM解码,并且配置引脚。 | ||
+ | |||
+ | PPM接收引脚必须为中断脚:【Core:D2 D3】【Core+:D2 D3 D6】【CoreUSB:D0 D1 D2 SDA SCL】 。 | ||
+ | |||
+ | |||
<p style="color: #E87E05;font-size:135%">参数</p> | <p style="color: #E87E05;font-size:135%">参数</p> | ||
− | *'''Pin''' | + | *'''Pin''':设置PPM解码的接收引脚。 |
+ | |||
+ | |||
<p style="color: #E87E05;font-size:135%">返回值</p> | <p style="color: #E87E05;font-size:135%">返回值</p> | ||
无 | 无 | ||
+ | |||
+ | |||
<p style="color: #E87E05;font-size:135%">示例</p> | <p style="color: #E87E05;font-size:135%">示例</p> | ||
<source lang="c++"> | <source lang="c++"> | ||
第31行: | 第39行: | ||
<br> | <br> | ||
<br> | <br> | ||
− | + | ||
+ | [[PPM_Reference |返回PPM_Reference页面]] |
2017年7月26日 (三) 08:55的最新版本
PPM.beginRead(byte Pin)
描述 初始化PPM解码,并且配置引脚。 PPM接收引脚必须为中断脚:【Core:D2 D3】【Core+:D2 D3 D6】【CoreUSB:D0 D1 D2 SDA SCL】 。
参数
返回值 无
示例 #include "Microduino_PPM.h"
PPM PPM; //创建PPM实例,名称为PPM
#define INPUT_PIN 2 //必须为中断脚
void setup() {
PPM.beginRead(INPUT_PIN); //必须为中断脚
}
其他 |