“Sensor-IR Sensor/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) |
||
第38行: | 第38行: | ||
<p style="color: #333333;font-size:155%">'''编程手册'''</p> | <p style="color: #333333;font-size:155%">'''编程手册'''</p> | ||
*下载并解压程序'''[[File:Sensor-IR Sensor_Test.zip]]''' | *下载并解压程序'''[[File:Sensor-IR Sensor_Test.zip]]''' | ||
+ | 也可以直接复制如下程序到IDE中 | ||
+ | <source lang="cpp"> | ||
+ | #include <IRremote.h> | ||
+ | IRsend irsend; | ||
+ | |||
+ | void setup() | ||
+ | { | ||
+ | Serial.begin(9600); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | if (Serial.read() != -1) { //只要在串口输入任意字符 | ||
+ | for (int i = 0; i < 3; i++) { | ||
+ | irsend.sendSony(0xa90, 12); // 发送三次信号0xA90 | ||
+ | delay(100); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
{{Upload | {{Upload | ||
|nameA=[[Microduino-Core/zh]]、[[Microduino-USBTTL/zh]] | |nameA=[[Microduino-Core/zh]]、[[Microduino-USBTTL/zh]] |
2017年12月19日 (二) 08:55的版本
| |
|
技术规格
引脚说明
编程手册
也可以直接复制如下程序到IDE中 #include <IRremote.h>
IRsend irsend;
void setup()
{
Serial.begin(9600);
}
void loop() {
if (Serial.read() != -1) { //只要在串口输入任意字符
for (int i = 0; i < 3; i++) {
irsend.sendSony(0xa90, 12); // 发送三次信号0xA90
delay(100);
}
}
}
在串口监视器输入任意值后可以看到红外发射模块上的LED灯闪烁一次,表示红外信号已发射
应用
历史
图库
|