Vehicle Control Unit 0.01
This is the c library for controlling the car.
Loading...
Searching...
No Matches
Conversions.c
Go to the documentation of this file.
1#include "../../Inc/Utils/Conversions.h"
2
3static const float MPS_TO_MPH = 2.236936;
4
5float convertMpsToMph(float metersPerSecond) {
6 return metersPerSecond * MPS_TO_MPH;
7}
static const float MPS_TO_MPH
Definition: Conversions.c:3
float convertMpsToMph(float metersPerSecond)
Definition: Conversions.c:5