MPUConverter Delegate
MPU sensor converter. Use to convert raw MPU sensor readings to either calibrated values
and or a different scale.
Namespace: RoboTx.ApiAssembly: Robo-Tx.Api (in Robo-Tx.Api.dll) Version: 2.0.0+58b061ffe902bd370f7f9a4c58103d8e1f566889
public delegate float MPUConverter(
char axis,
int rawValue
)
Public Delegate Function MPUConverter (
axis As Char,
rawValue As Integer
) As Single
type MPUConverter =
delegate of
axis : char *
rawValue : int -> float32
- axis Char
- Either 'x', 'y' or 'z'.
- rawValue Int32
- Raw sensor value in integer form.
SingleThe converted value.