Fix adress of controllers

This commit is contained in:
Carsten Schmiemann 2022-04-17 13:15:50 +02:00
parent cc757e4c66
commit dfd8158a13
1 changed files with 3 additions and 3 deletions

View File

@ -163,7 +163,7 @@ void OvmsVehicleRenaultZoePh2::IncomingPollReply(canbus* bus, uint16_t type, uin
IncomingEVC(type, pid, rxbuf.data(), rxbuf.size());
break;
// ****** BCM *****
case 0x1893:
case 0x765:
IncomingBCM(type, pid, rxbuf.data(), rxbuf.size());
break;
// ****** LBC *****
@ -171,11 +171,11 @@ void OvmsVehicleRenaultZoePh2::IncomingPollReply(canbus* bus, uint16_t type, uin
IncomingLBC(type, pid, rxbuf.data(), rxbuf.size());
break;
// ****** HVAC *****
case 0x1892:
case 0x764:
IncomingHVAC(type, pid, rxbuf.data(), rxbuf.size());
break;
// ****** UCM *****
case 0x1901:
case 0x76D:
IncomingUCM(type, pid, rxbuf.data(), rxbuf.size());
break;
}