Vehicle Control Unit 0.01
This is the c library for controlling the car.
Loading...
Searching...
No Matches
Functions
Conversions.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

float convertMpsToMph (float metersPerSecond)
 

Function Documentation

◆ convertMpsToMph()

float convertMpsToMph ( float  metersPerSecond)

Converts from meters per second to miles per hour

Parameters
metersPerSecondThe speed to convert in meters per second.
Returns
The speed in miles per hour.

Definition at line 5 of file Conversions.c.

5 {
6 return metersPerSecond * MPS_TO_MPH;
7}
static const float MPS_TO_MPH
Definition: Conversions.c:3
Here is the caller graph for this function: