Library for interfacing to Nokia 5110 LCD display with Image Loader (as found on the SparkFun website).

Bitmap.h

Committer:
rottenegg
Date:
2019-04-17
Revision:
50:c293d29e035a
Parent:
40:c9262294f2e1

File content as of revision 50:c293d29e035a:

#ifndef BITMAP_H
#define BITMAP_H

//Best BMP Image at W = 84, H = 48
//MONOCHROME ONLY

#include "N5110.h"
#include <bitset>
#include <iostream>

class N5110;

class Bitmap {
    
public:
    static void renderBMP(const char *path, N5110 &lcd ,unsigned int const  x, unsigned int const  y);            

};

#endif