LCD Library for the 8448 LCD (Nokia 5110 display)
It's based on de Library from Lauren from DFRobot / "LCD4884" version 0.3
See LCD8448 for more detailed information on how to use LCD8448
To include the Library in your project you need to install it or take a copy in your project.
Copy the LCD8448_Config.h
file beside your main.cpp
(or any other folder) to overwrite the default configuration and adjust it to the project needs.
// Include LCD definitions - Overwrite the Library LCD Config File
#include "LCD8448_Config.h"
// Include LCD Library
#include <LCD8448.h>
Instantiate an object of the LCD
LCD8448 lcd(LCD8448::MODE_REGULAR, LCD8448::NORMAL);
The easiest way to get started on the Arduino Platform is, to use an example project like LCD8448_simple
, as there is already included the LCD8448_Config.h
file.
To include the Library in your PlatformIO project, you need simply to add it to your platformio.ini
:
lib_deps =
https://github.com/RedCali/LCD8448.git
For the use of this Library, C++11
support needs to be enabled
To generate the Symbol array Image2Bitmap is used.
A copy and extended Version can be found at RedCali@Git/Image2Bitmap