summaryrefslogtreecommitdiff
path: root/libraries/MultiLCD/hardware/avr/HW_AVR.h
diff options
context:
space:
mode:
authorStanley Huang <stanleyhuangyc@gmail.com>2014-06-06 09:01:44 +1000
committerStanley Huang <stanleyhuangyc@gmail.com>2014-06-06 09:01:44 +1000
commit0236e79af77c785c68fe0856723ecfb0fac4bbeb (patch)
tree867dcb4211f8f9552d72cbbbebb02cd4c6d5c992 /libraries/MultiLCD/hardware/avr/HW_AVR.h
parent9fd501b8f63ef4d8c484c1ad49478ca8d7bd593a (diff)
download2021-arduino-obd-0236e79af77c785c68fe0856723ecfb0fac4bbeb.tar.gz
2021-arduino-obd-0236e79af77c785c68fe0856723ecfb0fac4bbeb.tar.bz2
2021-arduino-obd-0236e79af77c785c68fe0856723ecfb0fac4bbeb.zip
Add hardware header files
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);
+}