赤外線リモコンの送信をパルス幅にて行います。 IRRcevPulseWidthライブラリと合わせて使ってください。 Transmit IR control by pulse width. Please use it together with the IRRcevPulseWidth library.
Dependents: IRLED_SendReceveDemo
IRSendPulseWidth.h
00001 #ifndef __IRSEND_PULSEWIDTH_H__ 00002 #define __IRSEND_PULSEWIDTH_H__ 00003 00004 #include "mbed.h" 00005 00006 00007 class IRSendPulseWidth { 00008 public: 00009 IRSendPulseWidth(PinName output); 00010 00011 void sendSignal(uint16_t *sendDataArray,uint16_t sendDataN); 00012 00013 private: 00014 PwmOut g_pwmoutLed; 00015 }; 00016 00017 #endif
Generated on Tue Jul 26 2022 18:16:01 by 1.7.2