-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhd44780.rb
154 lines (130 loc) · 3.16 KB
/
hd44780.rb
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env ruby
require "i2c"
# require "i2c/driver/i2c-dev"
class I2C_HD44780
# commands
LCD_CLEARDISPLAY = 0x01
LCD_RETURNHOME = 0x02
LCD_ENTRYMODESET = 0x04
LCD_DISPLAYCONTROL = 0x08
LCD_CURSORSHIFT = 0x10
LCD_FUNCTIONSET = 0x20
LCD_SETCGRAMADDR = 0x40
LCD_SETDDRAMADDR = 0x80
# flags for display entry mode
LCD_ENTRYRIGHT = 0x00
LCD_ENTRYLEFT = 0x02
LCD_ENTRYSHIFTINCREMENT = 0x01
LCD_ENTRYSHIFTDECREMENT = 0x00
# flags for display on/off control
LCD_DISPLAYON = 0x04
LCD_DISPLAYOFF = 0x00
LCD_CURSORON = 0x02
LCD_CURSOROFF = 0x00
LCD_BLINKON = 0x01
LCD_BLINKOFF = 0x00
# flags for display/cursor shift
LCD_DISPLAYMOVE = 0x08
LCD_CURSORMOVE = 0x00
LCD_MOVERIGHT = 0x04
LCD_MOVELEFT = 0x00
# flags for function set
LCD_8BITMODE = 0x10
LCD_4BITMODE = 0x00
LCD_2LINE = 0x08
LCD_1LINE = 0x00
LCD_5x10DOTS = 0x04
LCD_5x8DOTS = 0x00
# flags for backlight control
LCD_BACKLIGHT = 0x08
LCD_NOBACKLIGHT = 0x00
En = 0b00000100 # Enable bit
Rw = 0b00000010 # Read/Write bit
Rs = 0b00000001 # Register select bit
def initialize
# @device = I2CDevice.new(address: 0x27, driver: I2CDevice::Driver::I2CDev.new("/dev/i2c-1"))
@device = I2C::Dev.create("/dev/i2c-1")
write(0x03)
sleep(0.0045)
write(0x03)
sleep(0.0045)
write(0x03)
sleep(0.0045)
write(0x02)
sleep(0.0001)
write(LCD_FUNCTIONSET | LCD_2LINE | LCD_5x8DOTS | LCD_4BITMODE)
write(LCD_DISPLAYCONTROL | LCD_DISPLAYON)
write(LCD_CLEARDISPLAY)
write(LCD_ENTRYMODESET | LCD_ENTRYLEFT)
@backlight = true
@mutex = Mutex.new
Kernel::sleep(0.2)
end
def backlight
@backlight
end
def backlight= value
unless backlight == value
@backlight = value
write 0x80
end
end
def backlight_mask
if @backlight
LCD_BACKLIGHT
else
0
end
end
# clocks EN to latch command
def strobe(data)
@device.write(0x27, ((data & ~En) | backlight_mask))
sleep(0.0000001)
@device.write(0x27, data | En | backlight_mask)
sleep(0.0000001)
@device.write(0x27, ((data & ~En) | backlight_mask))
sleep(0.0000001)
end
def write_four_bits(data)
strobe(data)
end
# write a command to lcd
def write(cmd, mode=0)
write_four_bits(mode | (cmd & 0xF0))
write_four_bits(mode | ((cmd << 4) & 0xF0))
sleep(0.000050)
end
# put string function
def puts_sync(string, line)
write [0x80, 0xC0, 0x94, 0xD4][line-1]
string.each_char { |c| write(c.ord, Rs) }
end
# put string function
def puts(string, line)
@mutex.synchronize do
write [0x80, 0xC0, 0x94, 0xD4][line-1]
string.each_char { |c| write(c.ord, Rs) }
end
end
def put_lines a, b
@mutex.synchronize do
write 0x80
a.each_char { |c| write(c.ord, Rs) }
write 0xc0
b.each_char { |c| write(c.ord, Rs) }
end
end
# clear lcd and set to home
def clear
@mutex.synchronize do
write(LCD_CLEARDISPLAY)
write(LCD_RETURNHOME)
end
end
def set_udc(index, data)
@mutex.synchronize do
write(0x40 + ((index & 0x07) << 3))
data.each { |d| write(d, Rs)}
end
end
end