-
Notifications
You must be signed in to change notification settings - Fork 0
/
LCDi2c.class.php
127 lines (110 loc) · 3.41 KB
/
LCDi2c.class.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?PHP
/**
* i2C PHP Library
* @category Interface Integration
* @package I2C
* @author Timothy Lorens <[email protected]>
* @license [<url>] mMIT
* @link http://icebrkr.me iCE Breakers Matrix
*/
define('LCD_CLEARDISPLAY', 0x01);
define('LCD_RETURNHOME', 0x02);
define('LCD_ENTRYMODESET', 0x04);
define('LCD_DISPLAYCONTROL', 0x08);
define('LCD_CURSORSHIFT', 0x10);
define('LCD_FUNCTIONSET', 0x20);
define('LCD_SETCGRAMADDR', 0x40);
define('LCD_SETDDRAMADDR', 0x80);
//# flags for display entry mode
define('LCD_ENTRYRIGHT', 0x00);
define('LCD_ENTRYLEFT', 0x02);
define('LCD_ENTRYSHIFTINCREMENT', 0x01);
define('LCD_ENTRYSHIFTDECREMENT', 0x00);
//# flags for display on/off control
define('LCD_DISPLAYON', 0x04);
define('LCD_DISPLAYOFF', 0x00);
define('LCD_CURSORON', 0x02);
define('LCD_CURSOROFF', 0x00);
define('LCD_BLINKON', 0x01);
define('LCD_BLINKOFF', 0x00);
//# flags for display/cursor shift
define('LCD_DISPLAYMOVE', 0x08);
define('LCD_CURSORMOVE', 0x00);
define('LCD_MOVERIGHT', 0x04);
define('LCD_MOVELEFT', 0x00);
//# flags for function set
define('LCD_8BITMODE', 0x10);
define('LCD_4BITMODE', 0x00);
define('LCD_2LINE', 0x08);
define('LCD_1LINE', 0x00);
define('LCD_5x10DOTS', 0x04);
define('LCD_5x8DOTS', 0x00);
define('LCD_BACKLIGHT', 0x08);
define('LCD_NOBACKLIGHT', 0x00);
define('EN', 1<<2);
define('RW', 1<<1);
define('RS', 1<<0);
/**
* i2c Classs
* @category Interface
* @package I2C
* @author Timothy Lorens <[email protected]>
* @license [<url>] mMIT
* @link http://icebrkr.me iCE Breakers Matrix
*/
class LCDi2c {
private $_i2c = null;
private $_bus = null;
private $_address = null;
public function __construct($bus, $address) {
$this->_bus = $bus;
$this->_address = $address;
$this->_i2c = new i2c($this->_bus, $this->_address);
$this->writeCmd(0x03);
$this->writeCmd(0x03);
$this->writeCmd(0x03);
$this->writeCmd(0x02);
}
public function writeString($line, $string) {
switch($line) {
case 1:
$this->writeCmd(0x80);
break;
case 2:
$this->writeCmd(0xC0);
break;
case 3:
$this->writeCmd(0x94);
break;
case 4:
$this->writeCmd(0xD4);
break;
}
for ($x = 0; $x < strlen($string); $x++) {
$this->LCDWrite(ord($string[$x]), RS);
}
}
public function writeCmd($cmd) {
$this->_i2c->write_cmd($cmd, $this->_address);
}
private function strobe($value) {
$this->_i2c->write_byte($value | LCD_BACKLIGHT);
$this->_i2c->write_byte($value | EN | LCD_BACKLIGHT);
usleep(1);
$this->_i2c->write_byte($value | LCD_BACKLIGHT);
}
private function write_four_bits($data) {
$this->_i2c->write_cmd($data | LCD_BACKLIGHT, $this->_address);
$this->strobe($data);
}
public function write_char($char) {
$this->strobe(($char >> 4) << 4);
usleep(5000);
$this->strobe(($char & 0xF) << 4);
usleep(1);
}
private function LCDWrite($cmd, $mode = 0) {
$this->write_four_bits($mode | ($cmd & 0xF0));
$this->write_four_bits($mode | (($cmd << 4) & 0xF0));
}
}