scale it correctly

This commit is contained in:
Matthew Kennedy 2024-05-09 22:30:18 -07:00 committed by rusefillc
parent 1770ce8753
commit 1969e98d0c
1 changed files with 2 additions and 2 deletions

View File

@ -215,8 +215,8 @@ struct Egts {
};
static void populateFrame(Egts& msg) {
msg.egt[0] = Sensor::getOrZero(SensorType::EGT1);
msg.egt[1] = Sensor::getOrZero(SensorType::EGT2);
msg.egt[0] = 5 * Sensor::getOrZero(SensorType::EGT1);
msg.egt[1] = 5 * Sensor::getOrZero(SensorType::EGT2);
}
void sendCanVerbose() {