-
Notifications
You must be signed in to change notification settings - Fork 0
/
glcd_text_tiny.h
124 lines (105 loc) · 4.99 KB
/
glcd_text_tiny.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/**
\file glcd_text_tiny.h
\brief GLCD Library - Tiny Text functions.
\author Andy Gock
*/
/*
Copyright (c) 2012, Andy Gock
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Andy Gock nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL ANDY GOCK BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef GLCD_TEXT_TINY_H
#define GLCD_TEXT_TINY_H
/** \addtogroup TinyText Tiny Text
* Functions relating to using tiny 5x7 text fonts.
*
* Tiny text functions are usually used on a line by line basis. Each line being 8 bits high.
* Characters start on the top most bit and are 7 bits high, leaving a one bit space underneath.
*
* @{
*/
/** Set font to be used from now on. This is the tiny 5x7 monospace font.
* \param font_table flash pointer to start from font table
* \param width width of each character
* \param height height of each character
* \param start_char start character
* \param end_char end character
* \note Only suitable for Stang font storage format. For MikroElektronika format, use
* glcd_set_font()
* \see glcd_set_font()
*/
void glcd_tiny_set_font(const char *font_table, uint8_t width, uint8_t height, char start_char, char end_char);
/** Write character to LCD in tiny 5x7 font.
* \param x column position to start
* \param line line number to be written (each line is 8 pixels high)
* \param c char to be written
*/
void glcd_tiny_draw_char(uint8_t x, uint8_t line, char c);
/** Write string to display buffer in tiny 5x7 font.
* Will wrap to next line if needed. Screen is not updated. Use glcd_write() to physically update display.
* \param x column position to start
* \param line line number to be written (each line is 8 pixels high)
* \param str string to be written
*/
void glcd_tiny_draw_string(uint8_t x, uint8_t line, char *str);
/** Write flash string to display buffer in tiny 5x7 font.
* Will wrap to next line if needed. Screen is not updated. Use glcd_write() to physically update display.
* \param x column position to start
* \param line line to be written (each line is 8 pixels high)
* \param str string stored in flash memory to be written
*/
void glcd_tiny_draw_string_P(uint8_t x, uint8_t line, const char *str);
/** Write string to bottom row of display.
* Screen buffer is scrolled up by one line. Screen is then physically updated.
* \param str string to be written
*/
void glcd_tiny_draw_string_ammend(char *str);
/** Write string from flash memory to bottom row of display.
* Screen buffer is scrolled up by one line. Screen is then physically updated.
* \param str string to be written
*/
void glcd_tiny_draw_string_ammend_P(const char *str);
/**
* Invert all contents of line number. Line 0 is the top most line.
* \param line Line number (0 is top most line)
*/
void glcd_tiny_invert_line(uint8_t line);
/** Write character to LCD in tiny 5x7 font to specified X, Y location.
* If position is aligned with 8 bit line heights, use glcd_tiny_draw_char() instead
* as it will be faster.
*
* \param x column position to start
* \param y row position to start (pixel based, not 8 bit high rows)
* \param c char to be written
* \see glcd_tiny_draw_char()
* \note This does the same thing as glcd_tiny_draw_char_xy() but is limited to Stang format
* font tables.
*/
void glcd_tiny_draw_char_xy(uint8_t x, uint8_t y, char c);
/** Initialise 5x7 text */
#define GLCD_TEXT_INIT() glcd_tiny_set_font(Font5x7,5,7,32,127);
/** Write string to bottom-most line after scrolling everything else up */
#define GLCD_WRITE(str) glcd_tiny_draw_string_ammend(str)
/** Write string from program memory to bottom-most line after scrolling everything else up */
#define GLCD_WRITE_P(str) glcd_tiny_draw_string_ammend_P(str)
/** @}*/
#endif