blob: ec3b046132b7a93127e6a472537a10dff443cf86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* GraphLCD driver library
*
* futatbaMDM166A.h - Futaba MDM166A LCD
* Output goes to a Futaba MDM166A LCD
*
* This file is released under the GNU General Public License.
*
* See the files README and COPYING for details.
*
* (c) 2010 Andreas Brachold <vdr07 AT deltab de>
* (c) 2011 Wolfgang Astleitner <mrwastl AT users.sourceforge.net>
*/
#ifndef _GLCDDRIVERS_FutabaMDM166A_H_
#define _GLCDDRIVERS_FutabaMDM166A_H_
#include "driver.h"
#define HAVE_STDBOOL_H
#include <hid.h>
#include <queue>
namespace GLCD
{
class cDriverConfig;
class cHIDQueue : public std::queue<byte> {
HIDInterface* hid;
bool bInit;
public:
cHIDQueue();
virtual ~cHIDQueue();
virtual bool open();
virtual void close();
virtual bool isopen() const { return hid != 0; }
void Cmd(const byte & cmd);
void Data(const byte & data);
bool Flush();
private:
const char *hiderror(hid_return ret) const;
};
class cDriverFutabaMDM166A : public cDriver, cHIDQueue
{
unsigned char *m_pDrawMem; // the draw "memory"
unsigned char *m_pVFDMem; // the double buffed display "memory"
unsigned int m_iSizeYb;
unsigned int m_nRefreshCounter;
unsigned int lastIconState;
int CheckSetup();
protected:
void ClearVFDMem();
void icons(unsigned int state);
bool SendCmdClock();
bool SendCmdShutdown();
public:
cDriverFutabaMDM166A(cDriverConfig * config);
virtual int Init();
virtual int DeInit();
virtual void Clear();
virtual void SetPixel(int x, int y, uint32_t data);
//virtual void Set8Pixels(int x, int y, byte data);
virtual void Refresh(bool refreshAll = false);
virtual void SetBrightness(unsigned int percent);
};
};
#endif
|