ASURO Library  2.80
printf.c
gehe zur Dokumentation dieser Datei
1 /****************************************************************************/
12 #include "asuro.h"
13 
14 /****************************************************************************/
54 void PrintFloat (float wert, char vorkomma, char nachkomma)
55 // vorkomma + nachkomma max 7
56 {
57  char text [10];
58 
59  dtostrf(wert, vorkomma, nachkomma, text);
60  SerPrint (text);
61 }
62