public string FormatFixedPointValues(float currentValue, float change, bool displayChange = true, bool exactDisplay = true, int digitsPastRadix = 0) { return(SimpleWatchDisplay.FormatFixedPointValues(currentValue, change, displayChange, exactDisplay, digitsPastRadix)); }
public string FormatIntegerValues(int currentValue, int change, bool displayChange = true, bool asHex = false, bool asSigned = true) { return(SimpleWatchDisplay.FormatIntegerValues(currentValue, change, displayChange, asHex, asSigned)); }