summaryrefslogtreecommitdiff
path: root/libraries/MultiLCD/hardware/avr/HW_AVR.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/MultiLCD/hardware/avr/HW_AVR.h')
-rw-r--r--libraries/MultiLCD/hardware/avr/HW_AVR.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/MultiLCD/hardware/avr/HW_AVR.h b/libraries/MultiLCD/hardware/avr/HW_AVR.h
new file mode 100644
index 0000000..669ecc0
--- /dev/null
+++ b/libraries/MultiLCD/hardware/avr/HW_AVR.h
@@ -0,0 +1,4 @@
+void UTFT::_convert_float(char *buf, double num, int width, byte prec)
+{
+ dtostrf(num, width, prec, buf);
+}