如视频无法正常播放,可点击这里前往B站观看
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
/* * IRsendDemo * * =====================功能说明===================== * 利用Arduino开发板发射红外控制信号 * * 本程序基于Ken Shirriff开发的IRremote库。如需获得该库文件 * 可前往以下网址获得: * http://arcfn.com (Ken Shirriff个人博客) * http://www.taichi-maker.com/ (太极创客官网) * * =====================电路连接====================== * 红外发射 LED 正极 --- Arduino Uno 引脚 3 * 红外发射 LED 负极 --- Arduino Uno 引脚 GND * * 如需获得详细电路连接说明图,请参阅太极创客网站: * http://WWW.TAICHI-MAKER.COM * * 此示例程序为配合太极创客制作的 * 《零基础入门学用ARDUINO教程-智能应用篇》使用 * */ #include <IRremote.h> IRsend irsend; void setup() { } void loop() { for (int i = 0; i < 3; i++) { irsend.sendNEC(0xF7C03F, 32); //发射NEC红外遥控协议F7C03F指令码 delay(40); } /* * * IRremote库支持NEC, Sony, Philips RC5, Philips RC6等协议指令。 * 本示例程序中Arduino将通过调用函数sendSony(0xa90, 12) 来发射Sony协议指令。 * 该函数的两个参数中, 0xa90为指令信息内容,12位指令信息位数。 * * 假如需要发射NEC协议指令则可以调用函数sendNEC(0xF7C03F, 32)。 * 其中0xF740BF为指令信息内容,32位指令信息位数。 * * 如果需要发射其它遥控协议指令请参考以下程序代码: * sendNEC(unsigned long data, int nbits); //发射NEC协议指令 * sendSony(unsigned long data, int nbits); //发射Sony协议指令 * void sendRC5(unsigned long data, int nbits); //发射Philips RC5协议指令 * void sendRC6(unsigned long data, int nbits); //发射Philips RC6协议指令 * void sendSharp(unsigned long data, int nbits); //发射Sharp协议指令 * void sendPanasonic(unsigned int address, unsigned long data); //发射Panasonic协议指令 * void sendJVC(unsigned long data, int nbits, int repeat); //发射JVC协议指令 * void sendRaw(unsigned int buf[], int len, int hz); //发射原始指令 */ delay(5000); //延迟5秒 } |