
irrigation system for the ST Nucleo boards
LCDs.h
- Committer:
- sheldon_holmes
- Date:
- 2015-04-18
- Revision:
- 4:9e223db481da
File content as of revision 4:9e223db481da:
#ifndef LCDs_H #define LCDs_H #include "mbed.h" #include <string> class LCDs{ public: LCDs(); void lcdinit(); void putString(string); void lcdReady(); void putData(unsigned char); void lcdcmd(unsigned char); }; #endif