RedCali / LCD8448

LCD Display Library for the 8448 LCD Display (Nokia 5110 display)
MIT License
0 stars 0 forks source link

LCD8448

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

Open topics / Ideas

Include the Library in your project

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);

Using with different IDE'S

Arduino

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.

PlatformIO

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

Atmel Studio / Microchip Studio

For the use of this Library, C++11 support needs to be enabled

Enable C++ Support

Generating the Image / Symbol Arrays

To generate the Symbol array Image2Bitmap is used.

A copy and extended Version can be found at RedCali@Git/Image2Bitmap