From 7d449c09e24bdc18b7d48ba7ce4b956cb3a2dabf Mon Sep 17 00:00:00 2001 From: Patrick Hamers Date: Sun, 29 Dec 2019 21:04:36 +0100 Subject: [PATCH] Fixed PROGMEM --- MitsubishiHeavyFDTCHeatpumpIR.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MitsubishiHeavyFDTCHeatpumpIR.cpp b/MitsubishiHeavyFDTCHeatpumpIR.cpp index 4a738c7..af5262d 100644 --- a/MitsubishiHeavyFDTCHeatpumpIR.cpp +++ b/MitsubishiHeavyFDTCHeatpumpIR.cpp @@ -2,8 +2,8 @@ MitsubishiHeavyFDTCHeatpumpIR::MitsubishiHeavyFDTCHeatpumpIR() : HeatpumpIR() { - static const char PROGMEM model[] PROGMEM = "mitsubishi_heavy_fdtc"; - static const char PROGMEM info[] PROGMEM = "{\"mdl\":\"mitsubishi_heavy_fdtc\",\"dn\":\"Mitsubishi Heavy FDTC\",\"mT\":18,\"xT\":30,\"fs\":3}"; + static const char model[] PROGMEM = "mitsubishi_heavy_fdtc"; + static const char info[] PROGMEM = "{\"mdl\":\"mitsubishi_heavy_fdtc\",\"dn\":\"Mitsubishi Heavy FDTC\",\"mT\":18,\"xT\":30,\"fs\":3}"; _model = model; _info = info;