Andrea L / IRremote

Dependents:   ConditionlyDaikin

Revision:
8:da53af1db462
Parent:
3:17440cf7ab90
Child:
9:4e06441ceecf
diff -r c82a0d54a024 -r da53af1db462 IRremote.h
--- 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;
 } ;