Small compile fix

This commit is contained in:
Denys-ThreadPC 2019-08-04 16:56:11 +03:00
parent 3df44bbae9
commit 6364d67ad7
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ void PanasonicAltDKEHeatpumpIR::send(IRSender& IR, uint8_t powerModeCmd, uint8_t
break;
}
uint ionizer = ionizerCmd ? PANASONIC_AIRCON2_ION_ON : PANASONIC_AIRCON2_ION_OFF;
uint8_t ionizer = ionizerCmd ? PANASONIC_AIRCON2_ION_ON : PANASONIC_AIRCON2_ION_OFF;
sendPanasonicLong(IR, operatingMode, fanSpeed, temperature, swingV, swingH, ionizer);
}