Update can_dash.cpp

This commit is contained in:
zed65 2024-02-24 17:16:46 +01:00 committed by rusefillc
parent 44ebfc633f
commit 838cbc21cf
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ void canDashboardHaltech(CanCycle cycle) {
{
CanTxMessage msg(CanCategory::NBC, 0x368, 8);
/* Wideband Sensor 1 */
tmp = (uint16_t)(Sensor::getOrZero(SensorType::Lambda1) * 1000 * 14.7);
tmp = (uint16_t)(Sensor::getOrZero(SensorType::Lambda1) * 1000);
msg[0] = (tmp >> 8);
msg[1] = (tmp & 0x00ff);
/* Wideband Sensor 2 */