Re-enable aux and ptc power readings

This commit is contained in:
Carsten Schmiemann 2022-05-07 01:04:06 +02:00
parent 0bf1180a48
commit 29f880300c
1 changed files with 2 additions and 2 deletions

View File

@ -76,12 +76,12 @@ void OvmsVehicleRenaultZoePh2::IncomingEVC(uint16_t type, uint16_t pid, const ch
break;
}
case 0x2A09: { // Power consumption by consumer
//mt_bat_aux_power_consumer->SetValue((float) CAN_UINT(0) * 10, Watts);
mt_bat_aux_power_consumer->SetValue((float) CAN_UINT(0) * 10, Watts);
//ESP_LOGD(TAG, "2A09 EVC mt_bat_aux_power_consumer: %d", CAN_UINT(0) * 10);
break;
}
case 0x2191: { // Power consumption by ptc
//mt_bat_aux_power_ptc->SetValue((float) CAN_UINT(0) * 10, Watts);
mt_bat_aux_power_ptc->SetValue((float) CAN_UINT(0) * 10, Watts);
//ESP_LOGD(TAG, "2191 EVC mt_bat_aux_power_ptc: %d", CAN_UINT(0) * 10);
break;
}