![]() |
Soldered SD Card Arduino Library 1.0.0
Easily read and write files to and form the SD card breakout! A fork of the original SDFat library by Bill Greiman.
|
Go to the source code of this file.
Functions | |
| bool | isDigit (char c) |
| bool | isSpace (char c) |
| char * | fmtBase10 (char *str, uint16_t n) |
| char * | fmtBase10 (char *str, uint32_t n) |
| char * | fmtDouble (char *str, double d, uint8_t prec, bool altFmt) |
| char * | fmtDouble (char *str, double d, uint8_t prec, bool altFmt, char expChar) |
| char * | fmtHex (char *str, uint32_t n) |
| char * | fmtSigned (char *str, int32_t n, uint8_t base, bool caps) |
| char * | fmtUnsigned (char *str, uint32_t n, uint8_t base, bool caps) |
| char * fmtBase10 | ( | char * | str, |
| uint16_t | n ) |
| char * fmtBase10 | ( | char * | str, |
| uint32_t | n ) |
| char * fmtDouble | ( | char * | str, |
| double | d, | ||
| uint8_t | prec, | ||
| bool | altFmt ) |
| char * fmtDouble | ( | char * | str, |
| double | value, | ||
| uint8_t | prec, | ||
| bool | altFmt, | ||
| char | expChar ) |
Print a number followed by a field terminator.
| [in] | value | The number to be printed. |
| [in] | ptr | Pointer to last char in buffer. |
| [in] | prec | Number of digits after decimal point. |
| [in] | expChar | Use exp format if non zero. |
| char * fmtHex | ( | char * | str, |
| uint32_t | n ) |
| char * fmtSigned | ( | char * | str, |
| int32_t | n, | ||
| uint8_t | base, | ||
| bool | caps ) |
| char * fmtUnsigned | ( | char * | str, |
| uint32_t | n, | ||
| uint8_t | base, | ||
| bool | caps ) |
|
inline |
|
inline |