Small bitmap-library to use with monocrome displays.

Revision:
1:e52881eae197
Child:
3:457eaa2c6ed5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TinyHelper.h	Wed Aug 02 09:50:46 2017 +0000
@@ -0,0 +1,11 @@
+#ifndef TINYHELPER_H_
+#define TINYHELPER_H_
+//Helper-functions to convert an int to a displayable char[]
+
+void IntToChar(char *CharBuffer, int Number); //Only works for positive numbers
+
+void IntToChar(char *CharBuffer, int Number, char Digits); //Only works for positive numbers, adds leading 0s to numbers
+
+void CombineChars(char *Destination, char *Source); //Combines two char[]
+
+#endif
\ No newline at end of file