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.
Fork of L432KC-SMT16030 by
LCD12864.h
- Committer:
- lmboogaard
- Date:
- 2017-01-10
- Revision:
- 0:af4af28f0975
File content as of revision 0:af4af28f0975:
//Arduino library v1.0
//Demo LCD12864 spi
//www.dfrobot.com
#ifndef LCD12864RSPI_h
#define LCD12864RSPI_h
#include "mbed.h"
class LCD12864RSPI {
typedef unsigned char uchar;
public:
void Initialise(void);
void WriteByte(int dat);
void WriteCommand(int CMD);
void WriteData(int CMD);
void CLEAR(void);
void DisplayString(int X,int Y, char *ptr,int dat);
void DisplaySig(int M,int N,int sig);
void DrawFullScreen(uchar *p);
void img1(uchar img[]);
void img2(uchar img[]);
};
#endif
