Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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