Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: IRremote.h
- Revision:
- 8:da53af1db462
- Parent:
- 3:17440cf7ab90
- Child:
- 9:4e06441ceecf
--- a/IRremote.h Thu Mar 10 15:39:34 2016 +0000 +++ b/IRremote.h Sun May 26 17:18:25 2019 +0000 @@ -76,6 +76,9 @@ #define DECODE_PRONTO 0 // This function doe not logically make sense #define SEND_PRONTO 1 +#define DECODE_DAIKIN 1 +#define SEND_DAIKIN 1 + //------------------------------------------------------------------------------ // When sending a Pronto code we request to send either the "once" code // or the "repeat" code @@ -115,6 +118,7 @@ SHARP, DENON, PRONTO, + DAIKIN } decode_type_t; @@ -331,6 +335,12 @@ void sendPronto (char* code, bool repeat, bool fallback) ; # endif +# if SEND_DAIKIN + void sendDaikin(unsigned char buf[], int len, int start); +# endif + + + PwmOut _pwm; } ;