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.
SPI-LCD.h
- Committer:
- Me
- Date:
- 2015-10-24
- Revision:
- 0:bf98376a4718
File content as of revision 0:bf98376a4718:
#ifndef MBED_TEXTLCD_H #define MBED_TEXTLCD_H #include "DigitalOut.h" #include "SPI.h" #include "mbed.h" namespace mbed { class SPILCD { public: SPILCD(PinName mosi, PinName miso, PinName sclk, PinName ssel); protected: void Init(); void ClrScreen(); void Cursor(int); SPI _mosi, _miso, _sclk; DigitalOut _ssel; }; } #endif