23 lines
553 B
Python
23 lines
553 B
Python
import RPi.GPIO
|
|
import sys
|
|
from PIL import Image
|
|
sys.path.append("../../")
|
|
from gfxlcd.driver.ili9325.gpio import GPIO as ILIGPIO
|
|
from gfxlcd.driver.ili9325.ili9325 import ILI9325
|
|
RPi.GPIO.setmode(RPi.GPIO.BCM)
|
|
|
|
|
|
drv = ILIGPIO()
|
|
drv.pins['LED'] = 6
|
|
drv.pins['CS'] = 18
|
|
lcd_tft = ILI9325(240, 320, drv)
|
|
lcd_tft.init()
|
|
|
|
|
|
image_file = Image.open("assets/japan_temple_240x320.jpg")
|
|
lcd_tft.draw_image(0, 0, image_file)
|
|
|
|
numbers_image = Image.open("assets/dsp2017_101_64.png")
|
|
lcd_tft.transparency_color = (0, 0, 0)
|
|
lcd_tft.draw_image(10, 10, numbers_image)
|