赤外線リモコンの送信をパルス幅にて行います。 IRRcevPulseWidthライブラリと合わせて使ってください。 Transmit IR control by pulse width. Please use it together with the IRRcevPulseWidth library.

Dependents:   IRLED_SendReceveDemo

IRSendPulseWidth.h

Committer:
nameless129
Date:
2016-12-25
Revision:
0:beaea9bf9c5b

File content as of revision 0:beaea9bf9c5b:

#ifndef __IRSEND_PULSEWIDTH_H__
#define __IRSEND_PULSEWIDTH_H__

#include "mbed.h"


class IRSendPulseWidth {
public:
    IRSendPulseWidth(PinName output);

    void sendSignal(uint16_t *sendDataArray,uint16_t sendDataN);

private:
    PwmOut g_pwmoutLed;
};

#endif