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

@ -32,12 +32,12 @@ float convertFromInch(float val)
float fixCurrent(int16_t value)
{
return -value/50.;
return -value/50.f;
}
float fixBoardTemp(int16_t value)
{
return value/10.;
return value/10.f;
}
std::string hallString(const bobbycar::protocol::serial::MotorFeedback &motor)