Library for LCD

Fork of N5110 by Craig Evans

Changes

RevisionDateWhoCommit message
45:c2598020fcac 2017-03-21 valavanisalex Fix line rendering when direction is negative default tip
44:596c207519de 2017-03-21 valavanisalex setPixel() now accepts a state parameter. clearPixel() deprecated
43:6c046786be6c 2017-03-08 valavanisalex Fix Bitmap error checking
42:c9262294f2e1 2017-03-08 valavanisalex Add Bitmap rendering code
41:5998f0d22113 2017-03-08 valavanisalex merge
40:92fad278c2c3 2017-03-08 valavanisalex Added Bitmap class to simplify sprite support
39:c708b92609aa 2017-03-07 eencae Updated example code.
38:00ebd449b6f3 2017-03-07 eencae Changed 'glyph' to sprite. Added docs.
37:2d5931a66fba 2017-03-07 eencae Added sprite support (untested).
36:626b873e6362 2017-03-01 eencae Re-merge
35:d80e568a2e18 2017-02-16 valavanisalex Use enumerations to make fill-types more self-explanatory
34:c9643726edca 2017-02-16 valavanisalex Use initialiser lists instead of constructor body
33:8a0c21042f82 2017-02-16 valavanisalex Add a destructor to free allocated memory
32:11986573659e 2017-02-08 eencae Change default Temp value in init as gives better performance.
31:5bc91bd44c77 2017-02-16 valavanisalex Add const safety to prevent unintentional modification of parameters, and set types to unsigned int where appropriate
30:4091516537e4 2017-02-15 valavanisalex getPixel should be const (i.e., it doesn't modify anything in the LCD object)
29:ebb5e51658cf 2017-04-10 el15vef 10/04/17
28:0de8da09808d 2017-03-16 el15vef 16.03.17 - Added the joystick and N5110 library
27:0d8d90936b4c 2017-02-07 eencae Fixed bug in drawRect() that causes sizes to be off by 1 pixel.
26:36be85c20ef4 2017-02-07 eencae Updated docs.
25:444e55e2e419 2017-02-07 eencae Fixed docs.
24:342bdb6679a1 2017-02-07 eencae Moved refresh() out of clear/printString/printChar methods. ; ; At every frame update, the buffer should be cleared using 'clear', then the frame constructed using printString/draw methods etc. Finally a call to refresh() will update the display.
23:eb7e6632fc9e 2017-02-01 eencae Check for NULL pointer on pwrPin, use memset to zero out buffer. Ensure all pointers initialised to allow use with 'new' operator.
22:31c54fc61f12 2017-02-01 eencae Moved 'initSPI' method call to init() method from constructor.
21:4cbdc20fea9f 2017-01-28 eencae Added overloaded constructor that doesn't include the power pin being connected to GPIO. In this instance, the Vcc of the LCD must be tied directly to +3V3.
20:8db6aa25f55e 2017-01-19 eencae Added f to literals for brightness check to change them to float literals and get rid of compiler warning.
19:ba8addc061ea 2015-04-23 eencae 1) Replaced literal values in library with WIDTH, HEIGHT, BANKS etc.; 2) User now needs to manually call refresh() after drawing lines/circles/rects. Was previously in drawLine() and so sent the entire buffer to display after every line - very slow.
18:1af393359298 2015-04-22 eencae printString() and printChar() updated so that strings/chars are cut-off after the 83rd pixel and fit on the display. Previously this would cause the buffer array to go out of bounds and cause a crash.
17:780a542d5f8b 2015-03-17 eencae Added functions for drawing primitive shapes (lines, circles and rectangles). Can draw white, black and dotted lines. Can draw transparent (with outline), black fill and white fill circles and rectangles.
16:b37a3a260598 2015-03-10 eencae Updated docs.
15:ee645611ff94 2015-03-10 eencae (none)
14:520a02fc12aa 2015-03-10 eencae Expanded example and modified printChar().
13:908644099648 2015-03-10 eencae Modified printChar() so that the character pixel data is written to the buffer, rather than being sent directly to the display. Means chars and setPixel() can be used together.; ; Expanded example code.
12:022993561fd8 2015-03-10 eencae clear() method now clears on-board RAM on LCD.
11:fc7d89b33e4c 2014-09-17 eencae Changed LED pin number to match custom PCB.
10:6f3abb40202b 2014-07-16 eencae Added example code to show how to use sprintf() to print data variables on the display.
9:7701f0126ba7 2014-05-20 eencae printString() has been modified. Rather than sending the string to the display using the printChar(), it now writes the character bitmap data to the screen buffer and refreshes the display. This means that pixels and strings can now be used together.
8:40abe5736eca 2014-05-19 eencae Added plot function (untested).
7:3010f24e0a81 2014-05-19 eencae Modified refresh() function so that the address is reset to (0,0) before sending the entire screen buffer to the display. Ensures the origin of the buffer coincides with the top-left pixel. This may not be the case after printing strings.
6:adb79338d40f 2014-01-27 eencae Documentation complete. Functions are all tested. Note that strings and characters are deleted from the display if the refresh() function is called.; ; TODO:; ; Instead of printing strings and characters to the display, they are written to the buffer.
5:6ea180eef702 2014-01-26 eencae Updated docs.
4:e923c54c1c7d 2014-01-26 eencae Updated docs.
3:f90dd1042d17 2014-01-26 eencae Added documentation.
2:e93021cfb0a9 2014-01-26 eencae Added documentation and additional testing.
1:df68f34cd32d 2014-01-26 eencae Started to add documentation. This commit is to test the publishing and documentation.
0:d563e74f0ae9 2014-01-26 eencae Initial commit of library.; ; Testing and documentation to do.