simpletext library
v0.85
Compact variations of put/get write/read and print/scan for smaller program sizes
|
#include "simpletext.h"
Functions | |
void | writeFloatPrecision (text_t *p, float number, int width, int precision) |
Function to print a float number to the pointer.
Copyright (c) 2013, Parallax Inc. Written by Steve Denson
void writeFloatPrecision | ( | text_t * | device, |
float | value, | ||
int | width, | ||
int | precision | ||
) |
Print a string representation of a 32 bit floating point number to device
device | is a previously open/started terminal device. |
width | is number of characters to print. |
precision | is number of decimal point digits to print. |
value | is number to print. |