-
Notifications
You must be signed in to change notification settings - Fork 164
/
ili9XXX.py
820 lines (643 loc) · 35 KB
/
ili9XXX.py
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
##############################################################################
# Pure/Hybrid MicroPython LVGL display driver for
# ili9341, ili9488, ili9488g, gc9a01, st7789 on ESP32
#
#
# Critical function for high FPS are flush and ISR.
# when "hybrid=True", use C implementation for these functions instead of
# pure python implementation. This improves each frame in about 15ms!
#
# When hybrid=False driver is pure micropython.
# Pure Micropython could be viable when ESP32 supports Viper code emitter.
#
# ili9488 driver DO NOT support pure micropython now (because of required
# color convert). Pure MicroPython is only supported for ili9341 and
# gc9a01 displays!
#
##############################################################################
import espidf as esp
import lvgl as lv
import lv_utils
import micropython
from micropython import const
micropython.alloc_emergency_exception_buf(256)
# Constants
COLOR_MODE_RGB = const(0x00)
COLOR_MODE_BGR = const(0x08)
MADCTL_MH = const(0x04) # Refresh 0=Left to Right, 1=Right to Left
MADCTL_ML = const(0x10) # Refresh 0=Top to Bottom, 1=Bottom to Top
MADCTL_MV = const(0x20) # 0=Normal, 1=Row/column exchange
MADCTL_MX = const(0x40) # 0=Left to Right, 1=Right to Left
MADCTL_MY = const(0x80) # 0=Top to Bottom, 1=Bottom to Top
# MADCTL values for each of the orientation constants for non-st7789 displays.
ORIENTATION_TABLE = (MADCTL_MX, MADCTL_MV, MADCTL_MY, MADCTL_MY | MADCTL_MX | MADCTL_MV)
# Negative orientation constants indicate the MADCTL value will come from the ORIENTATION_TABLE,
# otherwise the rot value is used as the MADCTL value.
PORTRAIT = const(-1)
LANDSCAPE = const(-2)
REVERSE_PORTRAIT = const(-3)
REVERSE_LANDSCAPE = const(-4)
DISPLAY_TYPE_ILI9341 = const(1)
DISPLAY_TYPE_ILI9488 = const(2)
DISPLAY_TYPE_GC9A01 = const(3)
DISPLAY_TYPE_ST7789 = const(4)
DISPLAY_TYPE_ST7735 = const(5)
_TRANSFER_BUFFER_LENGTH = const(16)
_MALLOC_DMA = esp.MALLOC_CAP.DMA | esp.MALLOC_CAP.INTERNAL
class ili9XXX:
# Default values of "power" and "backlight" are reversed logic! 0 means ON.
# You can change this by setting backlight_on and power_on arguments.
def __init__(self,
miso=5, mosi=18, clk=19, cs=13, dc=12, rst=4, power=14, backlight=15, backlight_on=0, power_on=0,
spihost=esp.HSPI_HOST, spimode=0, mhz=40, factor=4, hybrid=True, width=240, height=320, start_x=0, start_y=0,
invert=False, double_buffer=True, half_duplex=True, display_type=0, asynchronous=False, initialize=True,
color_format=lv.COLOR_FORMAT.RGB565, swap_rgb565_bytes=False
):
# Initializations
if not lv.is_initialized():
lv.init()
self.display_name = self.display_name or 'ili9XXX'
self.init_cmds = self.init_cmds or [ ]
self.asynchronous = asynchronous
self.initialize = initialize
self.width = width
self.height = height
self.start_x = start_x
self.start_y = start_y
self.miso = miso
self.mosi = mosi
self.clk = clk
self.cs = cs
self.dc = dc
self.rst = rst
self.power = power
self.backlight = backlight
self.backlight_on = backlight_on
self.power_on = power_on
self.spihost = spihost
self.spimode = spimode
self.mhz = mhz
self.factor = factor
self.hybrid = hybrid
self.half_duplex = half_duplex
self.display_type = display_type
self.color_format = color_format
self.pixel_size = lv.color_format_get_size(color_format)
self.swap_rgb565_bytes = swap_rgb565_bytes
self.rgb565_swap_func = lv.draw_sw_rgb565_swap if swap_rgb565_bytes else None
flush_cb = esp.ili9xxx_flush if hybrid and hasattr(esp, 'ili9xxx_flush') else self.flush
if not color_format:
raise RuntimeError(f"No color format defined for display {self.display_name}")
# SPI
self.start_time_ptr = esp.C_Pointer()
self.end_time_ptr = esp.C_Pointer()
self.trans_result_ptr = esp.C_Pointer()
self.trans = esp.spi_transaction_t()
self.flush_acc_setup_cycles = 0
self.flush_acc_dma_cycles = 0
# Monitor
self.monitor_acc_time = 0
self.monitor_acc_px = 0
self.monitor_count = 0
self.cycles_in_ms = esp.esp_clk_cpu_freq() // 1000
if invert:
self.init_cmds.append({'cmd': 0x21})
# Allocate display buffer(s)
self.buf_size = (self.width * self.height * self.pixel_size) // factor
self.buf1 = esp.heap_caps_malloc(self.buf_size, _MALLOC_DMA)
if not self.buf1:
free = esp.heap_caps_get_largest_free_block(_MALLOC_DMA)
raise RuntimeError(f"Not enough DMA-capable memory to allocate display buffer. Needed: {self.buf_size} bytes, largest free block: {free} bytes")
self.buf2 = esp.heap_caps_malloc(self.buf_size, _MALLOC_DMA) if double_buffer else None
# Register display driver
self.disp_spi_init()
self.disp_drv = lv.display_create(self.width, self.height)
self.disp_drv.set_color_format(color_format)
self.disp_drv.set_buffers(self.buf1, self.buf2, self.buf_size, lv.DISPLAY_RENDER_MODE.PARTIAL)
self.disp_drv.set_flush_cb(flush_cb)
self.disp_drv.set_driver_data({
'dc': self.dc,
'spi': self.spi,
'dt': self.display_type,
'swap_rgb565_bytes': self.swap_rgb565_bytes,
'start_x': self.start_x,
'start_y': self.start_y
})
# Initialize display
if self.initialize:
self.init()
if not lv_utils.event_loop.is_running():
self.event_loop = lv_utils.event_loop(asynchronous=self.asynchronous)
######################################################
def disp_spi_init(self):
# TODO: Register finalizer callback to deinit SPI.
# That would get called on soft reset.
buscfg = esp.spi_bus_config_t({
"miso_io_num": self.miso,
"mosi_io_num": self.mosi,
"sclk_io_num": self.clk,
"quadwp_io_num": -1,
"quadhd_io_num": -1,
"max_transfer_sz": self.buf_size,
})
devcfg_flags = esp.SPI_DEVICE.NO_DUMMY
if self.half_duplex:
devcfg_flags |= esp.SPI_DEVICE.HALFDUPLEX
devcfg = esp.spi_device_interface_config_t({
"clock_speed_hz": self.mhz*1000*1000, # Clock out at DISP_SPI_MHZ MHz
"mode": self.spimode, # SPI mode 0 by default
"spics_io_num": self.cs, # CS pin
"queue_size": 2,
"flags": devcfg_flags,
"duty_cycle_pos": 128,
})
if self.hybrid and hasattr(esp, 'ili9xxx_post_cb_isr'):
devcfg.pre_cb = None
devcfg.post_cb = esp.ili9xxx_post_cb_isr
else:
devcfg.pre_cb = esp.ex_spi_pre_cb_isr
devcfg.post_cb = esp.ex_spi_post_cb_isr
esp.gpio_pad_select_gpio(self.cs)
# Initialize the SPI bus, if needed.
if buscfg.mosi_io_num >= 0 and \
buscfg.sclk_io_num >= 0:
if buscfg.miso_io_num >= 0:
esp.gpio_pad_select_gpio(self.miso)
esp.gpio_set_direction(self.miso, esp.GPIO_MODE.INPUT)
esp.gpio_set_pull_mode(self.miso, esp.GPIO.PULLUP_ONLY)
esp.gpio_pad_select_gpio(self.mosi)
esp.gpio_pad_select_gpio(self.clk)
esp.gpio_set_direction(self.mosi, esp.GPIO_MODE.OUTPUT)
esp.gpio_set_direction(self.clk, esp.GPIO_MODE.OUTPUT)
ret = esp.spi_bus_initialize(self.spihost, buscfg, 1)
if ret != 0: raise RuntimeError("Failed initializing SPI bus")
self.trans_buffer = esp.heap_caps_malloc(_TRANSFER_BUFFER_LENGTH, _MALLOC_DMA)
self.cmd_trans_data = self.trans_buffer.__dereference__(1)
self.word_trans_data = self.trans_buffer.__dereference__(4)
# Attach the LCD to the SPI bus
ptr_to_spi = esp.C_Pointer()
ret = esp.spi_bus_add_device(self.spihost, devcfg, ptr_to_spi)
if ret != 0: raise RuntimeError("Failed adding SPI device")
self.spi = ptr_to_spi.ptr_val
self.bytes_transmitted = 0
completed_spi_transaction = esp.spi_transaction_t()
cast_spi_transaction_instance = esp.spi_transaction_t.__cast_instance__
def post_isr(arg):
reported_transmitted = self.bytes_transmitted
if reported_transmitted > 0:
self.bytes_transmitted -= reported_transmitted
# Called in ISR context!
def flush_isr(spi_transaction_ptr):
self.disp_drv.flush_ready()
# esp.spi_device_release_bus(self.spi)
esp.get_ccount(self.end_time_ptr)
# cast_spi_transaction_instance(completed_spi_transaction, spi_transaction_ptr)
# self.bytes_transmitted += completed_spi_transaction.length
# try:
# micropython.schedule(post_isr, None)
# except RuntimeError:
# pass
self.spi_callbacks = esp.spi_transaction_set_cb(None, flush_isr)
#
# Deinitialize SPI device and bus, and free memory
# This function is called from finilizer during gc sweep - therefore must not allocate memory!
#
def deinit(self):
# Prevent callbacks to lvgl, which refer to the buffers we are about to delete
if lv_utils.event_loop.is_running():
self.event_loop.deinit()
if self.disp_drv:
self.disp_drv.delete()
if self.spi:
# Pop all pending transaction results
ret = 0
while ret == 0:
ret = esp.spi_device_get_trans_result(self.spi, self.trans_result_ptr , 1)
# Remove device
esp.spi_bus_remove_device(self.spi)
self.spi = None
# Free SPI bus
esp.spi_bus_free(self.spihost)
self.spihost = None
# Free RAM
if self.buf1:
esp.heap_caps_free(self.buf1)
self.buf1 = None
if self.buf2:
esp.heap_caps_free(self.buf2)
self.buf2 = None
if self.trans_buffer:
esp.heap_caps_free(self.trans_buffer)
self.trans_buffer = None
######################################################
def spi_send(self, data):
self.trans.length = len(data) * 8 # Length is in bytes, transaction length is in bits.
self.trans.tx_buffer = data # data should be allocated as DMA-able memory
self.trans.user = None
esp.spi_device_polling_transmit(self.spi, self.trans)
def spi_send_dma(self, data):
self.trans.length = len(data) * 8 # Length is in bytes, transaction length is in bits.
self.trans.tx_buffer = data # data should be allocated as DMA-able memory
self.trans.user = self.spi_callbacks
esp.spi_device_queue_trans(self.spi, self.trans, -1)
######################################################
def send_cmd(self, cmd):
esp.gpio_set_level(self.dc, 0) # Command mode
self.cmd_trans_data[0] = cmd
self.spi_send(self.cmd_trans_data)
def send_data(self, data):
esp.gpio_set_level(self.dc, 1) # Data mode
if len(data) > _TRANSFER_BUFFER_LENGTH: raise RuntimeError('Data too long, please use DMA!')
trans_data = self.trans_buffer.__dereference__(len(data))
trans_data[:] = data[:]
self.spi_send(trans_data)
def send_trans_word(self):
esp.gpio_set_level(self.dc, 1) # Data mode
self.spi_send(self.word_trans_data)
def send_data_dma(self, data): # data should be allocated as DMA-able memory
esp.gpio_set_level(self.dc, 1) # Data mode
self.spi_send_dma(data)
######################################################
async def _init(self, sleep_func):
# Initialize non-SPI GPIOs
esp.gpio_pad_select_gpio(self.dc)
if self.rst != -1: esp.gpio_pad_select_gpio(self.rst)
if self.backlight != -1: esp.gpio_pad_select_gpio(self.backlight)
if self.power != -1: esp.gpio_pad_select_gpio(self.power)
esp.gpio_set_direction(self.dc, esp.GPIO_MODE.OUTPUT)
if self.rst != -1: esp.gpio_set_direction(self.rst, esp.GPIO_MODE.OUTPUT)
if self.backlight != -1: esp.gpio_set_direction(self.backlight, esp.GPIO_MODE.OUTPUT)
if self.power != -1: esp.gpio_set_direction(self.power, esp.GPIO_MODE.OUTPUT)
# Power the display
if self.power != -1:
esp.gpio_set_level(self.power, self.power_on)
await sleep_func(100)
# Reset the display
if self.rst != -1:
esp.gpio_set_level(self.rst, 0)
await sleep_func(100)
esp.gpio_set_level(self.rst, 1)
await sleep_func(100)
# Send all the commands
for cmd in self.init_cmds:
self.send_cmd(cmd['cmd'])
if 'data' in cmd:
self.send_data(cmd['data'])
if 'delay' in cmd:
await sleep_func(cmd['delay'])
# Enable backlight
if self.backlight != -1:
esp.gpio_set_level(self.backlight, self.backlight_on)
def init(self):
import utime
generator = self._init(lambda ms:(yield ms))
try:
while True:
ms = next(generator)
utime.sleep_ms(ms)
except StopIteration:
pass
async def init_async(self):
import uasyncio
await self._init(uasyncio.sleep_ms)
def power_down(self):
if self.power != -1:
esp.gpio_set_level(self.power, 1 - self.power_on)
if self.backlight != -1:
esp.gpio_set_level(self.backlight, 1 - self.backlight_on)
######################################################
def flush(self, disp_drv, area, color_p):
if self.end_time_ptr.int_val and self.end_time_ptr.int_val > self.start_time_ptr.int_val:
self.flush_acc_dma_cycles += self.end_time_ptr.int_val - self.start_time_ptr.int_val
esp.get_ccount(self.start_time_ptr)
# esp.spi_device_acquire_bus(self.spi, esp.ESP.MAX_DELAY)
# Column addresses
self.send_cmd(0x2A)
x1 = area.x1 + self.start_x
x2 = area.x2 + self.start_x
self.word_trans_data[0] = (x1 >> 8) & 0xFF
self.word_trans_data[1] = x1 & 0xFF
self.word_trans_data[2] = (x2 >> 8) & 0xFF
self.word_trans_data[3] = x2 & 0xFF
self.send_trans_word()
# Page addresses
self.send_cmd(0x2B)
y1 = area.y1 + self.start_y
y2 = area.y2 + self.start_y
self.word_trans_data[0] = (y1 >> 8) & 0xFF
self.word_trans_data[1] = y1 & 0xFF
self.word_trans_data[2] = (y2 >> 8) & 0xFF
self.word_trans_data[3] = y2 & 0xFF
self.send_trans_word()
# Memory write by DMA, disp_flush_ready when finished
self.send_cmd(0x2C)
size = (x2 - x1 + 1) * (y2 - y1 + 1)
data_view = color_p.__dereference__(size * self.pixel_size)
if self.rgb565_swap_func:
self.rgb565_swap_func(data_view, size)
esp.get_ccount(self.end_time_ptr)
if self.end_time_ptr.int_val > self.start_time_ptr.int_val:
self.flush_acc_setup_cycles += self.end_time_ptr.int_val - self.start_time_ptr.int_val
esp.get_ccount(self.start_time_ptr)
self.send_data_dma(data_view)
######################################################
def monitor(self, disp_drv, time, px):
self.monitor_acc_time += time
self.monitor_acc_px += px
self.monitor_count += 1
def stat(self):
if self.monitor_count == 0:
return None
time = self.monitor_acc_time // self.monitor_count
setup = self.flush_acc_setup_cycles // (self.monitor_count * self.cycles_in_ms)
dma = self.flush_acc_dma_cycles // (self.monitor_count * self.cycles_in_ms)
px = self.monitor_acc_px // self.monitor_count
self.monitor_acc_time = 0
self.monitor_acc_px = 0
self.monitor_count = 0
self.flush_acc_setup_cycles = 0
self.flush_acc_dma_cycles = 0
return time, setup, dma, px
def madctl(self, colormode, rotation, rotations):
# if rotation is 0 or positive use the value as is.
if rotation >= 0:
return rotation | colormode
# otherwise use abs(rotation)-1 as index to retrieve value from rotations set
index = abs(rotation) - 1
if index > len(rotations):
RuntimeError('Invalid display rot value specified during init.')
return rotations[index] | colormode
class ili9341(ili9XXX):
def __init__(self,
miso=5, mosi=18, clk=19, cs=13, dc=12, rst=4, power=14, backlight=15, backlight_on=0, power_on=0,
spihost=esp.HSPI_HOST, spimode=0, mhz=40, factor=4, hybrid=True, width=240, height=320, start_x=0, start_y=0,
colormode=COLOR_MODE_BGR, rot=PORTRAIT, invert=False, double_buffer=True, half_duplex=True,
asynchronous=False, initialize=True, color_format=lv.COLOR_FORMAT.RGB565, swap_rgb565_bytes=True
):
# Make sure MicroPython was built such that color won't require processing before DMA
if lv.color_format_get_bpp(color_format) != 16:
raise RuntimeError('ili9341 micropython driver requires 16 bit color format')
self.display_name = 'ILI9341'
self.init_cmds = [
{'cmd': 0xCF, 'data': bytes([0x00, 0x83, 0X30])},
{'cmd': 0xED, 'data': bytes([0x64, 0x03, 0X12, 0X81])},
{'cmd': 0xE8, 'data': bytes([0x85, 0x01, 0x79])},
{'cmd': 0xCB, 'data': bytes([0x39, 0x2C, 0x00, 0x34, 0x02])},
{'cmd': 0xF7, 'data': bytes([0x20])},
{'cmd': 0xEA, 'data': bytes([0x00, 0x00])},
{'cmd': 0xC0, 'data': bytes([0x26])}, # Power control
{'cmd': 0xC1, 'data': bytes([0x11])}, # Power control
{'cmd': 0xC5, 'data': bytes([0x35, 0x3E])}, # VCOM control
{'cmd': 0xC7, 'data': bytes([0xBE])}, # VCOM control
{'cmd': 0x36, 'data': bytes([
self.madctl(colormode, rot, ORIENTATION_TABLE)])}, # MADCTL
{'cmd': 0x3A, 'data': bytes([0x55])}, # Pixel Format Set
{'cmd': 0xB1, 'data': bytes([0x00, 0x1B])},
{'cmd': 0xF2, 'data': bytes([0x08])},
{'cmd': 0x26, 'data': bytes([0x01])},
{'cmd': 0xE0, 'data': bytes([0x1F, 0x1A, 0x18, 0x0A, 0x0F, 0x06, 0x45, 0X87, 0x32, 0x0A, 0x07, 0x02, 0x07, 0x05, 0x00])},
{'cmd': 0XE1, 'data': bytes([0x00, 0x25, 0x27, 0x05, 0x10, 0x09, 0x3A, 0x78, 0x4D, 0x05, 0x18, 0x0D, 0x38, 0x3A, 0x1F])},
{'cmd': 0x2A, 'data': bytes([0x00, 0x00, 0x00, 0xEF])},
{'cmd': 0x2B, 'data': bytes([0x00, 0x00, 0x01, 0x3f])},
{'cmd': 0x2C, 'data': bytes([0])},
{'cmd': 0xB7, 'data': bytes([0x07])},
{'cmd': 0xB6, 'data': bytes([0x0A, 0x82, 0x27, 0x00])},
{'cmd': 0x11, 'data': bytes([0]), 'delay':100},
{'cmd': 0x29, 'data': bytes([0]), 'delay':100}
]
super().__init__(miso=miso, mosi=mosi, clk=clk, cs=cs, dc=dc, rst=rst, power=power, backlight=backlight,
backlight_on=backlight_on, power_on=power_on, spihost=spihost, spimode=spimode, mhz=mhz, factor=factor, hybrid=hybrid,
width=width, height=height, start_x=start_x, start_y=start_y, invert=invert, double_buffer=double_buffer,
half_duplex=half_duplex, display_type=DISPLAY_TYPE_ILI9341, asynchronous=asynchronous, initialize=initialize,
color_format=color_format, swap_rgb565_bytes=swap_rgb565_bytes)
class ili9488(ili9XXX):
def __init__(self,
miso=5, mosi=18, clk=19, cs=13, dc=12, rst=4, power=14, backlight=15, backlight_on=0, power_on=0,
spihost=esp.HSPI_HOST, spimode=0, mhz=40, factor=8, hybrid=True, width=320, height=480, colormode=COLOR_MODE_RGB,
rot=PORTRAIT, invert=False, double_buffer=True, half_duplex=True, asynchronous=False, initialize=True,
color_format=lv.COLOR_FORMAT.XRGB8888, display_type=DISPLAY_TYPE_ILI9488, p16=False, swap_rgb565_bytes=False
):
if (lv.color_format_get_bpp(color_format) != 32) and not p16:
raise RuntimeError('ili9488 micropython driver requires 32 bit color format')
if not hybrid:
raise RuntimeError('ili9488 micropython driver do not support non-hybrid driver')
self.display_name = 'ILI9488'
if p16:
pix_format = [0x55]
else:
pix_format = [0x66]
self.init_cmds = [
{'cmd': 0x01, 'data': bytes([0]), 'delay': 200},
{'cmd': 0x11, 'data': bytes([0]), 'delay': 120},
{'cmd': 0xE0, 'data': bytes([0x00, 0x03, 0x09, 0x08, 0x16, 0x0A, 0x3F, 0x78, 0x4C, 0x09, 0x0A, 0x08, 0x16, 0x1A, 0x0F])},
{'cmd': 0xE1, 'data': bytes([0x00, 0x16, 0x19, 0x03, 0x0F, 0x05, 0x32, 0x45, 0x46, 0x04, 0x0E, 0x0D, 0x35, 0x37, 0x0F])},
{'cmd': 0xC0, 'data': bytes([0x17, 0x15])}, ### 0x13, 0x13
{'cmd': 0xC1, 'data': bytes([0x41])}, ###
{'cmd': 0xC2, 'data': bytes([0x44])}, ###
{'cmd': 0xC5, 'data': bytes([0x00, 0x12, 0x80])},
#{'cmd': 0xC5, 'data': bytes([0x00, 0x0, 0x0, 0x0])},
{'cmd': 0x36, 'data': bytes([
self.madctl(colormode, rot, ORIENTATION_TABLE)])}, # MADCTL
{'cmd': 0x3A, 'data': bytes(pix_format)},
{'cmd': 0xB0, 'data': bytes([0x00])},
{'cmd': 0xB1, 'data': bytes([0xA0])},
{'cmd': 0xB4, 'data': bytes([0x02])},
{'cmd': 0xB6, 'data': bytes([0x02, 0x02])},
{'cmd': 0xE9, 'data': bytes([0x00])},
{'cmd': 0x53, 'data': bytes([0x28])},
{'cmd': 0x51, 'data': bytes([0x7F])},
{'cmd': 0xF7, 'data': bytes([0xA9, 0x51, 0x2C, 0x02])},
{'cmd': 0x29, 'data': bytes([0]), 'delay': 120}
]
super().__init__(miso=miso, mosi=mosi, clk=clk, cs=cs, dc=dc, rst=rst, power=power, backlight=backlight,
backlight_on=backlight_on, power_on=power_on, spihost=spihost, spimode=spimode, mhz=mhz, factor=factor, hybrid=hybrid,
width=width, height=height, invert=invert, double_buffer=double_buffer, half_duplex=half_duplex,
display_type=display_type, asynchronous=asynchronous, initialize=initialize,
color_format=color_format, swap_rgb565_bytes=swap_rgb565_bytes)
class ili9488g(ili9488):
def __init__(self,
miso=-1, mosi=23, clk=18, cs=5, dc=27, rst=-1, power=-1, backlight=-1, backlight_on=0, power_on=0,
spihost=esp.VSPI_HOST, spimode=0, mhz=80, factor=8, hybrid=True, width=320, height=480,
rot=PORTRAIT, invert=False, double_buffer=True, half_duplex=True, asynchronous=False, initialize=True,
color_format=lv.COLOR_FORMAT.XRGB8888, swap_rgb565_bytes=False
):
if lv.color_format_get_bpp(color_format) == 32:
colormode=COLOR_MODE_RGB
color_format=lv.COLOR_FORMAT.XRGB8888
display_type=DISPLAY_TYPE_ILI9488 # 24-bit pixel handling
p16=False
if lv.color_format_get_bpp(color_format) == 16:
colormode=COLOR_MODE_BGR
color_format=lv.COLOR_FORMAT.RGB565
swap_rgb565_bytes=True
display_type=DISPLAY_TYPE_ILI9341 # Force use of 16-bit pixel handling
p16=True
super().__init__(miso=miso, mosi=mosi, clk=clk, cs=cs, dc=dc, rst=rst, power=power, backlight=backlight,
backlight_on=backlight_on, power_on=power_on, spihost=spihost, spimode=spimode, mhz=mhz, factor=factor, hybrid=hybrid,
width=width, height=height, colormode=colormode, rot=rot, invert=invert, double_buffer=double_buffer, half_duplex=half_duplex,
asynchronous=asynchronous, initialize=initialize, color_format=color_format, display_type=display_type, p16=p16,
swap_rgb565_bytes=swap_rgb565_bytes)
class gc9a01(ili9XXX):
# On the tested display the write direction and colormode appear to be
# reversed from how they are presented in the datasheet
def __init__(self,
miso=5, mosi=18, clk=19, cs=13, dc=12, rst=4, power=14, backlight=15, backlight_on=0, power_on=0,
spihost=esp.HSPI_HOST, spimode=0, mhz=60, factor=4, hybrid=True, width=240, height=240, colormode=COLOR_MODE_RGB,
rot=PORTRAIT, invert=False, double_buffer=True, half_duplex=True, asynchronous=False, initialize=True,
color_format=lv.COLOR_FORMAT.RGB565, swap_rgb565_bytes=True
):
if lv.color_format_get_bpp(color_format) != 16:
raise RuntimeError('gc9a01 micropython driver requires 16 bit color format')
# This is included as the color mode appears to be reversed from the
# datasheet and the ili9XXX driver values
if colormode == COLOR_MODE_RGB:
self.colormode = COLOR_MODE_BGR
elif colormode == COLOR_MODE_BGR:
self.colormode = COLOR_MODE_RGB
self.display_name = 'GC9A01'
self.init_cmds = [
{'cmd': 0xEF, 'data': bytes([0])},
{'cmd': 0xEB, 'data': bytes([0x14])},
{'cmd': 0xFE, 'data': bytes([0])},
{'cmd': 0xEF, 'data': bytes([0])},
{'cmd': 0xEB, 'data': bytes([0x14])},
{'cmd': 0x84, 'data': bytes([0x40])},
{'cmd': 0x85, 'data': bytes([0xFF])},
{'cmd': 0x86, 'data': bytes([0xFF])},
{'cmd': 0x87, 'data': bytes([0xFF])},
{'cmd': 0x88, 'data': bytes([0x0A])},
{'cmd': 0x89, 'data': bytes([0x21])},
{'cmd': 0x8A, 'data': bytes([0x00])},
{'cmd': 0x8B, 'data': bytes([0x80])},
{'cmd': 0x8C, 'data': bytes([0x01])},
{'cmd': 0x8D, 'data': bytes([0x01])},
{'cmd': 0x8E, 'data': bytes([0xFF])},
{'cmd': 0x8F, 'data': bytes([0xFF])},
{'cmd': 0xB6, 'data': bytes([0x00, 0x00])},
{'cmd': 0x36, 'data': bytes([
self.madctl(colormode, rot, ORIENTATION_TABLE)])}, # MADCTL
{'cmd': 0x3A, 'data': bytes([0x05])},
{'cmd': 0x90, 'data': bytes([0x08, 0x08, 0x08, 0x08])},
{'cmd': 0xBD, 'data': bytes([0x06])},
{'cmd': 0xBC, 'data': bytes([0x00])},
{'cmd': 0xFF, 'data': bytes([0x60, 0x01, 0x04])},
{'cmd': 0xC3, 'data': bytes([0x13])},
{'cmd': 0xC4, 'data': bytes([0x13])},
{'cmd': 0xC9, 'data': bytes([0x22])},
{'cmd': 0xBE, 'data': bytes([0x11])},
{'cmd': 0xE1, 'data': bytes([0x10, 0x0E])},
{'cmd': 0xDF, 'data': bytes([0x21, 0x0c, 0x02])},
{'cmd': 0xF0, 'data': bytes([0x45, 0x09, 0x08, 0x08, 0x26, 0x2A])},
{'cmd': 0xF1, 'data': bytes([0x43, 0x70, 0x72, 0x36, 0x37, 0x6F])},
{'cmd': 0xF2, 'data': bytes([0x45, 0x09, 0x08, 0x08, 0x26, 0x2A])},
{'cmd': 0xF3, 'data': bytes([0x43, 0x70, 0x72, 0x36, 0x37, 0x6F])},
{'cmd': 0xED, 'data': bytes([0x1B, 0x0B])},
{'cmd': 0xAE, 'data': bytes([0x77])},
{'cmd': 0xCD, 'data': bytes([0x63])},
{'cmd': 0x70, 'data': bytes([0x07, 0x07, 0x04, 0x0E, 0x0F, 0x09, 0x07, 0x08, 0x03])},
{'cmd': 0xE8, 'data': bytes([0x34])},
{'cmd': 0x62, 'data': bytes([0x18, 0x0D, 0x71, 0xED, 0x70, 0x70, 0x18, 0x0F, 0x71, 0xEF, 0x70, 0x70])},
{'cmd': 0x63, 'data': bytes([0x18, 0x11, 0x71, 0xF1, 0x70, 0x70, 0x18, 0x13, 0x71, 0xF3, 0x70, 0x70])},
{'cmd': 0x64, 'data': bytes([0x28, 0x29, 0xF1, 0x01, 0xF1, 0x00, 0x07])},
{'cmd': 0x66, 'data': bytes([0x3C, 0x00, 0xCD, 0x67, 0x45, 0x45, 0x10, 0x00, 0x00, 0x00])},
{'cmd': 0x67, 'data': bytes([0x00, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x54, 0x10, 0x32, 0x98])},
{'cmd': 0x74, 'data': bytes([0x10, 0x85, 0x80, 0x00, 0x00, 0x4E, 0x00])},
{'cmd': 0x98, 'data': bytes([0x3e, 0x07])},
{'cmd': 0x35, 'data': bytes([0])},
{'cmd': 0x21, 'data': bytes([0])},
{'cmd': 0x11, 'data': bytes([0]), 'delay': 20},
{'cmd': 0x29, 'data': bytes([0]), 'delay': 120}
]
super().__init__(miso=miso, mosi=mosi, clk=clk, cs=cs, dc=dc, rst=rst, power=power, backlight=backlight,
backlight_on=backlight_on, power_on=power_on, spihost=spihost, spimode=spimode, mhz=mhz, factor=factor, hybrid=hybrid,
width=width, height=height, invert=invert, double_buffer=double_buffer, half_duplex=half_duplex,
display_type=DISPLAY_TYPE_GC9A01, asynchronous=asynchronous, initialize=initialize, color_format=color_format,
swap_rgb565_bytes=swap_rgb565_bytes)
class st7789(ili9XXX):
# The st7789 display controller has an internal framebuffer arranged in a 320x240 pixel
# configuration. Physical displays with pixel sizes less than 320x240 must supply a start_x and
# start_y argument to indicate where the physical display begins relative to the start of the
# display controllers internal framebuffer.
def __init__(self,
miso=-1, mosi=19, clk=18, cs=5, dc=16, rst=23, power=-1, backlight=4, backlight_on=1, power_on=0,
spihost=esp.HSPI_HOST, spimode=0, mhz=40, factor=4, hybrid=True, width=320, height=240, start_x=0, start_y=0,
colormode=COLOR_MODE_BGR, rot=PORTRAIT, invert=True, double_buffer=True, half_duplex=True,
asynchronous=False, initialize=True, color_format=lv.COLOR_FORMAT.RGB565, swap_rgb565_bytes=True):
# Make sure Micropython was built such that color won't require processing before DMA
if lv.color_format_get_bpp(color_format) != 16:
raise RuntimeError('st7789 micropython driver requires 16 bit color format')
self.display_name = 'ST7789'
self.init_cmds = [
{'cmd': 0x11, 'data': bytes([0x0]), 'delay': 120},
{'cmd': 0x13, 'data': bytes([0x0])},
{'cmd': 0x36, 'data': bytes([
self.madctl(colormode, rot, (0x0, MADCTL_MX | MADCTL_MV, MADCTL_MY | MADCTL_MX, MADCTL_MY | MADCTL_MV))])}, # MADCTL
{'cmd': 0xb6, 'data': bytes([0xa, 0x82])},
{'cmd': 0x3a, 'data': bytes([0x55]),'delay': 10},
{'cmd': 0xb2, 'data': bytes([0xc, 0xc, 0x0, 0x33, 0x33])},
{'cmd': 0xb7, 'data': bytes([0x35])},
{'cmd': 0xbb, 'data': bytes([0x28])},
{'cmd': 0xc0, 'data': bytes([0xc])},
{'cmd': 0xc2, 'data': bytes([0x1, 0xff])},
{'cmd': 0xc3, 'data': bytes([0x10])},
{'cmd': 0xc4, 'data': bytes([0x20])},
{'cmd': 0xc6, 'data': bytes([0xf])},
{'cmd': 0xd0, 'data': bytes([0xa4, 0xa1])},
{'cmd': 0xe0, 'data': bytes([0xd0, 0x0, 0x2, 0x7, 0xa, 0x28, 0x32, 0x44, 0x42, 0x6, 0xe, 0x12, 0x14, 0x17])},
{'cmd': 0xe1, 'data': bytes([0xd0, 0x0, 0x2, 0x7, 0xa, 0x28, 0x31, 0x54, 0x47, 0xe, 0x1c, 0x17, 0x1b, 0x1e])},
{'cmd': 0x21, 'data': bytes([0x0])},
{'cmd': 0x2a, 'data': bytes([0x0, 0x0, 0x0, 0xe5])},
{'cmd': 0x2b, 'data': bytes([0x0, 0x0, 0x1, 0x3f]), 'delay': 120},
{'cmd': 0x29, 'data': bytes([0x0]), 'delay': 120}
]
super().__init__(miso=miso, mosi=mosi, clk=clk, cs=cs, dc=dc, rst=rst, power=power, backlight=backlight,
backlight_on=backlight_on, power_on=power_on, spihost=spihost, spimode=spimode, mhz=mhz, factor=factor, hybrid=hybrid,
width=width, height=height, start_x=start_x, start_y=start_y, invert=invert, double_buffer=double_buffer,
half_duplex=half_duplex, display_type=DISPLAY_TYPE_ST7789, asynchronous=asynchronous,
initialize=initialize, color_format=color_format, swap_rgb565_bytes=swap_rgb565_bytes)
class st7735(ili9XXX):
# The st7735 display controller has an internal framebuffer arranged in 132x162 pixel
# configuration. Physical displays with pixel sizes less than 132x162 must supply a start_x and
# start_y argument to indicate where the physical display begins relative to the start of the
# display controllers internal framebuffer.
def __init__(self,
miso=-1, mosi=19, clk=18, cs=13, dc=12, rst=4, power=-1, backlight=15, backlight_on=1, power_on=0,
spihost=esp.HSPI_HOST, spimode=0, mhz=40, factor=4, hybrid=True, width=128, height=160, start_x=0, start_y=0,
colormode=COLOR_MODE_RGB, rot=PORTRAIT, invert=False, double_buffer=True, half_duplex=True,
asynchronous=False, initialize=True, color_format=lv.COLOR_FORMAT.RGB565, swap_rgb565_bytes=True):
# Make sure Micropython was built such that color won't require processing before DMA
if lv.color_format_get_bpp(color_format) != 16:
raise RuntimeError('st7735 micropython driver requires 16 bit color format')
self.display_name = 'ST7735'
self.init_cmds = [
{'cmd': 0xCF, 'data': bytes([0x00, 0x83, 0X30])},
{'cmd': 0xED, 'data': bytes([0x64, 0x03, 0X12, 0X81])},
{'cmd': 0xE8, 'data': bytes([0x85, 0x01, 0x79])},
{'cmd': 0xCB, 'data': bytes([0x39, 0x2C, 0x00, 0x34, 0x02])},
{'cmd': 0xF7, 'data': bytes([0x20])},
{'cmd': 0xEA, 'data': bytes([0x00, 0x00])},
{'cmd': 0xC0, 'data': bytes([0x26])}, # Power control
{'cmd': 0xC1, 'data': bytes([0x11])}, # Power control
{'cmd': 0xC5, 'data': bytes([0x35, 0x3E])}, # VCOM control
{'cmd': 0xC7, 'data': bytes([0xBE])}, # VCOM control
{'cmd': 0x36, 'data': bytes([
self.madctl(colormode, rot, (MADCTL_MX | MADCTL_MY, MADCTL_MV | MADCTL_MY, 0, MADCTL_MX | MADCTL_MV))])}, # MADCTL
{'cmd': 0x3A, 'data': bytes([0x55])}, # Pixel Format Set
{'cmd': 0xB1, 'data': bytes([0x00, 0x1B])},
{'cmd': 0xF2, 'data': bytes([0x08])},
{'cmd': 0x26, 'data': bytes([0x01])},
{'cmd': 0xE0, 'data': bytes([0x1F, 0x1A, 0x18, 0x0A, 0x0F, 0x06, 0x45, 0X87, 0x32, 0x0A, 0x07, 0x02, 0x07, 0x05, 0x00])},
{'cmd': 0XE1, 'data': bytes([0x00, 0x25, 0x27, 0x05, 0x10, 0x09, 0x3A, 0x78, 0x4D, 0x05, 0x18, 0x0D, 0x38, 0x3A, 0x1F])},
{'cmd': 0x2A, 'data': bytes([0x00, 0x00, 0x00, 0xEF])},
{'cmd': 0x2B, 'data': bytes([0x00, 0x00, 0x01, 0x3f])},
{'cmd': 0x2C, 'data': bytes([0])},
{'cmd': 0xB7, 'data': bytes([0x07])},
{'cmd': 0xB6, 'data': bytes([0x0A, 0x82, 0x27, 0x00])},
{'cmd': 0x11, 'data': bytes([0]), 'delay':100},
{'cmd': 0x29, 'data': bytes([0]), 'delay':100}
]
super().__init__(miso=miso, mosi=mosi, clk=clk, cs=cs, dc=dc, rst=rst, power=power, backlight=backlight,
backlight_on=backlight_on, power_on=power_on, spihost=spihost, spimode=spimode, mhz=mhz, factor=factor, hybrid=hybrid,
width=width, height=height, start_x=start_x, start_y=start_y, invert=invert, double_buffer=double_buffer,
half_duplex=half_duplex, display_type=DISPLAY_TYPE_ST7735, asynchronous=asynchronous,
initialize=initialize, color_format=color_format, swap_rgb565_bytes=swap_rgb565_bytes)