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.
Dependencies: EthernetInterface LM75B mbed-rtos mbed
Diff: lcdcontrol.h
- Revision:
- 8:556a5738c2fa
- Parent:
- 7:2de256f902c8
--- a/lcdcontrol.h Mon Mar 19 00:58:20 2018 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,50 +0,0 @@ -#ifndef lcdcontrol_h -#define lcdcontrol_h -#include "mbed.h" -#include "C12832A1Z.h" - -class LcdControl -{ -public: - LcdControl(); //Constructor - - /** - * Deze methode zal voor de tekst layout zorgen als men de mode van de mbed moet kiezen. - * Geen parameters nodig. - */ - void printMode(); - - /** - * @param mode int - * - * Deze methode zal voor de tekst zorgen dat de gebruiker kan zien in welke mode hij zich bevindt. - * Wordt uitsluitend gebruikt in de setup klasse. - */ - void printMasterSlave(int); - - /** - * @param ID int - * - * Deze methode zal de ID uitprinten op het lcd scherm. - * Deze wordt opnieuw aangeroepen als men met de joystick up/down doet. - * Deze methode wordt uitsluitend gebruikt in de setup klasse. - */ - void printID(int); - - /** - * Deze methode zal het lcd scherm resetten (dus clearen) en zijn cursor op de beginpositie - * plaatsen. - * Deze methode heeft geen parameters nodig. - */ - void lcdReset(); - - /** - * @param text char array - * - * Deze methode zal de tekst uitprinten dat je meegeeft met de methode. (parameter) - * Wordt gebruikt in de slave. - */ - void lcdSlave(char*); -}; - -#endif \ No newline at end of file