This is the forum archive of Homey. For more information about Homey, visit the Official Homey website.

The Homey Community has been moved to https://community.athom.com.

This forum is now read-only for archive purposes.
Closed

Use of an Arduino as an IR repeater

Hi, how easy would it be to send IR data to an Arduino through a nRF24L01+ transceiver for it then to retransmit the IR data in another room?

Comments

  • EmileEmile Administrator, Athom
    Very easy. :) While the API is not yet finished, it'll look something like this:

    Homey.wireless('ir').on('tx', function( data ){ Homey.wireless('nrf24l01').tx( data.raw ); });

    and then do your arduino magic
This discussion has been closed.