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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
#![no_std]
#[allow(warnings)]
mod constants;
use constants::*;
use embedded_hal::blocking::delay::DelayUs;
use embedded_hal::blocking::spi::Write;
use embedded_hal::digital::v2::InputPin;
use embedded_hal::digital::v2::OutputPin;
#[cfg(feature = "graphics")]
use embedded_graphics_core::{
draw_target::DrawTarget,
geometry::Size,
geometry::{Dimensions, OriginDimensions},
pixelcolor::BinaryColor,
prelude::*,
};
#[derive(Clone, Copy, PartialEq)]
pub enum LUT {
Internal,
Normal,
Medium,
Fast,
Ultrafast,
}
pub struct Uc8151<SPI, CS, DC, BUSY, RESET> {
framebuffer: [u8; FRAME_BUFFER_SIZE as usize],
pub spi: SPI,
pub cs: CS,
pub dc: DC,
pub busy: BUSY,
pub reset: RESET,
pub lut: LUT,
}
#[derive(Debug)]
pub enum SpiDataError {
SpiError,
}
pub const WIDTH: u32 = 296;
pub const HEIGHT: u32 = 128;
const FRAME_BUFFER_SIZE: u32 = (WIDTH * HEIGHT) / 8;
impl<SPI, CS, DC, BUSY, RESET> Uc8151<SPI, CS, DC, BUSY, RESET>
where
SPI: Write<u8>,
CS: OutputPin,
DC: OutputPin,
BUSY: InputPin,
RESET: OutputPin,
{
pub fn new(spi: SPI, cs: CS, dc: DC, busy: BUSY, reset: RESET) -> Self {
Self {
framebuffer: [0; FRAME_BUFFER_SIZE as usize],
spi,
cs,
dc,
busy,
reset,
lut: LUT::Internal,
}
}
pub fn enable(&mut self) {
let _ = self.reset.set_high();
}
pub fn disable(&mut self) {
let _ = self.reset.set_low();
}
pub fn is_busy(&self) -> bool {
self.busy.is_low().unwrap_or(true)
}
pub fn get_lut(&self) -> &'static Lut {
match self.lut {
LUT::Internal => &DEFAULT_LUT,
LUT::Normal => &DEFAULT_LUT,
LUT::Medium => &MEDIUM_LUT,
LUT::Fast => &FAST_LUT,
LUT::Ultrafast => &ULTRA_LUT,
}
}
pub fn get_update_speed(&self) -> &Lut {
self.get_lut()
}
pub fn get_update_time(&self) -> u16 {
self.get_lut().update_time
}
fn update_speed(&mut self) -> Result<(), SpiDataError> {
let lut = self.get_lut();
self.command(Instruction::LUT_VCOM, &lut.vcom)?;
self.command(Instruction::LUT_WW, &lut.ww)?;
self.command(Instruction::LUT_BW, &lut.bw)?;
self.command(Instruction::LUT_WB, &lut.wb)?;
self.command(Instruction::LUT_BB, &lut.bb)?;
while self.is_busy() {}
Ok(())
}
pub fn reset(&mut self, delay_source: &mut impl DelayUs<u32>) {
self.disable();
delay_source.delay_us(10_000);
self.enable();
delay_source.delay_us(10_000);
while self.is_busy() {}
}
pub fn command(&mut self, reg: Instruction, data: &[u8]) -> Result<(), SpiDataError> {
let _ = self.cs.set_low();
let _ = self.dc.set_low();
self.spi
.write(&[reg as u8])
.map_err(|_| SpiDataError::SpiError)?;
if !data.is_empty() {
let _ = self.dc.set_high();
self.spi.write(data).map_err(|_| SpiDataError::SpiError)?;
}
let _ = self.cs.set_high();
Ok(())
}
pub fn data(&mut self, data: &[u8]) -> Result<(), SpiDataError> {
let _ = self.cs.set_low();
let _ = self.dc.set_high();
self.spi.write(data).map_err(|_| SpiDataError::SpiError)?;
let _ = self.cs.set_high();
Ok(())
}
pub fn transmit_framebuffer(&mut self) -> Result<(), SpiDataError> {
let _ = self.cs.set_low();
let _ = self.dc.set_low();
self.spi
.write(&[Instruction::DTM2 as u8])
.map_err(|_| SpiDataError::SpiError)?;
let _ = self.dc.set_high();
self.spi
.write(&self.framebuffer)
.map_err(|_| SpiDataError::SpiError)?;
let _ = self.cs.set_high();
Ok(())
}
pub fn setup(
&mut self,
delay_source: &mut impl DelayUs<u32>,
speed: LUT,
) -> Result<(), SpiDataError> {
self.reset(delay_source);
self.lut = speed;
let lut_type = if speed == LUT::Internal {
psrflags::LUT_OTP
} else {
psrflags::LUT_REG
};
let init_cmd = lut_type
| psrflags::RES_128X296
| psrflags::FORMAT_BW
| psrflags::SHIFT_RIGHT
| psrflags::BOOSTER_ON
| psrflags::RESET_NONE;
self.command(Instruction::PSR, &[init_cmd])?;
if self.lut != LUT::Internal {
self.update_speed()?;
}
self.command(
Instruction::PWR,
&[
pwr_flags_1::VDS_INTERNAL | pwr_flags_1::VDG_INTERNAL,
pwr_flags_2::VCOM_VD | pwr_flags_2::VGHL_16V,
0b101011,
0b101011,
0b101011,
],
)?;
self.command(Instruction::PON, &[])?;
while self.is_busy() {}
self.command(
Instruction::BTST,
&[
booster_flags::START_10MS | booster_flags::STRENGTH_3 | booster_flags::OFF_6_58US,
booster_flags::START_10MS | booster_flags::STRENGTH_3 | booster_flags::OFF_6_58US,
booster_flags::START_10MS | booster_flags::STRENGTH_3 | booster_flags::OFF_6_58US,
],
)?;
self.command(Instruction::PFS, &[pfs_flags::FRAMES_1])?;
self.command(
Instruction::TSE,
&[tse_flags::TEMP_INTERNAL | tse_flags::OFFSET_0],
)?;
self.command(Instruction::TCON, &[0x22])?;
let inverted = false;
self.command(
Instruction::CDI,
&[if inverted { 0b01_01_1100 } else { 0b01_00_1100 }],
)?;
self.command(Instruction::PLL, &[self.get_lut().pll])?;
self.command(Instruction::POF, &[])?;
while self.is_busy() {}
Ok(())
}
pub fn off(&mut self) -> Result<(), SpiDataError> {
while self.is_busy() {}
self.command(Instruction::POF, &[])?;
Ok(())
}
pub fn pixel(&mut self, x: u32, y: u32, v: bool) {
if x >= WIDTH || y >= HEIGHT {
return;
}
let address = ((y / 8) + (x * (HEIGHT / 8))) as usize;
let o: u8 = 7 - (y as u8 & 0b111);
let m: u8 = !(1 << o);
let b: u8 = (v as u8) << o;
self.framebuffer[address] = (self.framebuffer[address] & m) | b;
}
pub fn update(&mut self) -> Result<(), SpiDataError> {
while self.is_busy() {}
self.command(Instruction::PON, &[])?;
self.command(Instruction::PTOU, &[])?;
self.transmit_framebuffer()?;
self.command(Instruction::DSP, &[])?;
self.command(Instruction::DRF, &[])?;
while self.is_busy() {}
self.command(Instruction::POF, &[])?;
Ok(())
}
}
#[cfg(feature = "graphics")]
impl<SPI, CS, DC, BUSY, RESET> DrawTarget for Uc8151<SPI, CS, DC, BUSY, RESET>
where
SPI: Write<u8>,
CS: OutputPin,
DC: OutputPin,
BUSY: InputPin,
RESET: OutputPin,
{
type Color = BinaryColor;
type Error = core::convert::Infallible;
fn draw_iter<I>(&mut self, pixels: I) -> Result<(), Self::Error>
where
I: IntoIterator<Item = Pixel<Self::Color>>,
{
let bb = self.bounding_box();
pixels
.into_iter()
.filter(|Pixel(pos, _color)| bb.contains(*pos))
.for_each(|Pixel(pos, color)| {
self.pixel(pos.x as u32, pos.y as u32, color == BinaryColor::Off)
});
Ok(())
}
}
#[cfg(feature = "graphics")]
impl<SPI, CS, DC, BUSY, RESET> OriginDimensions for Uc8151<SPI, CS, DC, BUSY, RESET>
where
SPI: Write<u8>,
CS: OutputPin,
DC: OutputPin,
BUSY: InputPin,
RESET: OutputPin,
{
fn size(&self) -> Size {
Size::new(WIDTH, HEIGHT)
}
}