Tomas Kucera
/
PonyxisOS
Diff: PonyxisOS-lib/PonyxisOS.h
- Revision:
- 0:5f09301c4a9c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PonyxisOS-lib/PonyxisOS.h Sun Feb 24 07:23:24 2019 +0000 @@ -0,0 +1,20 @@ +#ifndef PonyxisOS_h +#define PonyxisOS_h +#include "Nextion.h" +#include "mbed.h" +#include "string.h" + +class PonyxisOS +{ +public: + PonyxisOS(); + void begin(); + void print(char *in); + void Render(); + +private: + char _screen[18][70]; + int _x, _y; + int _actline; +}; +#endif