Removed doubles

This commit is contained in:
CommanderRedYT
2022-06-12 17:51:31 +02:00
parent c42e44c40b
commit 460f40ce47
15 changed files with 130 additions and 130 deletions

View File

@ -27,7 +27,7 @@ float Controller::getCalibratedVoltage() const
}
else
{
voltage = voltage / 100.;
voltage = voltage / 100.f;
}
return voltage;
}