ホームページから赤外線で家電をコントロール

Http Server / IR のライブラリーを利用して動かしました。


1 comment on ホームページから赤外線で家電をコントロール:

03 Mar 2011

void irsend(void)   // IR Send
{
    RemoteIR::Format format = RemoteIR::AEHA;
    uint8_t buf[] = { 0xAA, 0x5A,0x8F,0x12,0x16,0xD1 }; //SHARP TV  Power
    int bitcount = 48;
    if (ir_tx.getState() == TransmitterIR::Idle) {
        bitcount = ir_tx.setData(format, buf, bitcount);
    }
}

/media/uploads/akira/irrimocon.jpg

Please log in to post comments.