From 8ec4be322f572f73d4ad2d14c0049c8ec6645c2c Mon Sep 17 00:00:00 2001 From: ToniA Date: Mon, 23 Nov 2015 18:56:02 +0200 Subject: [PATCH] Update readme and examples about the Daikin support --- README.md | 6 +++--- examples/simple/simple.ino | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 95ef569..cd14f13 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,18 @@ Original location: https://github.com/ToniA/arduino-heatpumpir -An Arduino library to control a Panasonic, Midea, Carrier, Fujitsu or Mitsubishi heat pump/split unit air conditioners. +An Arduino library to control a Panasonic, Midea, Carrier, Fujitsu or Mitsubishi heat pump/split unit air conditioner. Currently supports at least these models * Panasonic E9/E12-CKP (Panasonic remote control P/N A75C2295) * Panasonic E9/E12-DKE (Panasonic remote control P/N A75C2616) -* Panasonic E9/E12-JKE and E9/E12-NKE (also CE9-PKE has been reported to be working) +* Panasonic E9/E12-JKE and E9/E12-NKE * Midea MSR1-12HRN1-QC2 + MOA1-12HN1-QC2, sold as Ultimate Pro Plus Basic 13FP in Finland (Midea remote control P/N RG51M1/E) * Carrier 42NQV035G / 38NYV035H2 (Carrier remote control P/N WH-L05SE) * Fujitsu Nocria AWYZ14 (remote control P/N AR-PZ2) * Mitsubishi MSZ FD-25, probably also FD-35 (remote control P/N KM09D 0052376) -* Samsung AQV12PSBN / AQV09ASA * Hisense AUD (remote control Y-H1-01, Y-H1-02(E), Y-J1, Y-E4-07) probably AUC model * Sharp AY-ZP40KR (remote control P/N CRMC-A788JBEZ), possibly also IVT +* Daikin RXS25G2V1B /FVXS25FV1B (Remote control P/N ARC452A1) ## Instructions diff --git a/examples/simple/simple.ino b/examples/simple/simple.ino index b7723d1..aff127d 100644 --- a/examples/simple/simple.ino +++ b/examples/simple/simple.ino @@ -8,6 +8,8 @@ #include #include #include +#include + IRSender irSender(3); // IR led on Duemilanove digital pin 3 @@ -15,7 +17,7 @@ IRSender irSender(3); // IR led on Duemilanove digital pin 3 HeatpumpIR *heatpumpIR[] = {new PanasonicCKPHeatpumpIR(), new PanasonicDKEHeatpumpIR(), new PanasonicJKEHeatpumpIR(), new PanasonicNKEHeatpumpIR(), new CarrierHeatpumpIR(), new MideaHeatpumpIR(), new FujitsuHeatpumpIR(), new MitsubishiFDHeatpumpIR(), new MitsubishiFEHeatpumpIR(), - new SamsungHeatpumpIR(), new SharpHeatpumpIR(), NULL}; + new SamsungHeatpumpIR(), new SharpHeatpumpIR(), new DaikinHeatpumpIR(), NULL}; void setup() {