图像模块实验2---1.8‘’ LCD屏幕使用

1、实验目的
在指定位置:
显示采集的画面
显示字符
显示字符串
清屏
显示整数
显示浮点数

用于离线运行的验证。

2、步骤
(1)将LCD相关文件,拷贝到openmv连接之后,显示的U盘中。

在这里插入图片描述
在这里插入图片描述
(2)将lcd-test.py文件拉入到IDE中,运行
看到显示画面,屏幕先出现一个图像,然后出现hello。然后出现摄像头画面。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
(3)关键代码:
修改代码,大小等,看效果。
显示信息的话,需要把这行删掉。效果是出现摄像头画面在LCD上面。
tft.image(0,0,128-1,160-1,img.copy([80,80,128,160]))
在这里插入图片描述

# WeAct Studio
# 微行工作室
# TFT ST7735 Test

import sensor, image, time
from ST7735 import TFT,TFTColor
from sysfont import sysfont
from machine import Pin, SPI
import pyb,time

spi = SPI(-1, baudrate=20000000, polarity=0, phase=0, sck=Pin('E12'), mosi=Pin('E14'), miso=Pin('A0'))
# DC       - RS/DC data/command flag
# CS       - Chip Select, enable communication
# RST/RES  - Reset
dc  = Pin('E13', Pin.OUT, Pin.PULL_NONE)
cs  = Pin('E11', Pin.OUT, Pin.PULL_NONE)
rst = Pin('E15', Pin.OUT, Pin.PULL_NONE)

lcd_led = Pin('E10', Pin.OUT, Pin.PULL_NONE)
lcd_led.value(1)
Lcd_LEDCount=0
LCD_LEDSet=0
def LCD_LEDCtrl(timer):
    global Lcd_LEDCount,LCD_LEDSet
    Lcd_LEDCount=Lcd_LEDCount+1
    if Lcd_LEDCount == 10:
        Lcd_LEDCount=0
    if LCD_LEDSet > Lcd_LEDCount: lcd_led.value(0)
    else: lcd_led.value(1)

lcd_led_tim = pyb.Timer(2)
lcd_led_tim.init(freq=4000) # Freq: 4KHz
lcd_led_tim.callback(LCD_LEDCtrl)

def LCD_ShowBmp(_tft,FileName):
    f=open(FileName, 'rb')
    print(FileName)
    if f.read(2) == b'BM':  #header
        dummy = f.read(8) #file size(4), creator bytes(4)
        offset = int.from_bytes(f.read(4), 'little')
        hdrsize = int.from_bytes(f.read(4), 'little')
        width = int.from_bytes(f.read(4), 'little')
        height = int.from_bytes(f.read(4), 'little')
        if int.from_bytes(f.read(2), 'little') == 1: #planes must be 1
            depth = int.from_bytes(f.read(2), 'little')
            if depth == 24 and int.from_bytes(f.read(4), 'little') == 0:#compress method == uncompressed
                print("Image size:", width, "x", height)
                rowsize = (width * 3 + 3) & ~3
                if height < 0:
                    height = -height
                    flip = False
                else:
                    flip = True
                w, h = width, height
                if w > 128: w = 128
                if h > 160: h = 160
                tft._setwindowloc((0,0),(w - 1,h - 1))
                for row in range(h):
                    if flip:
                        pos = offset + (height - 1 - row) * rowsize
                    else:
                        pos = offset + row * rowsize
                    if f.tell() != pos:
                        dummy = f.seek(pos)
                    for col in range(w):
                        bgr = f.read(3)
                        _tft._pushcolor(TFTColor(bgr[0],bgr[1],bgr[2]))
            else:
                print(FileName+'is not 24bit pic')

tft=TFT(spi,dc,rst,cs)
tft.init_7735(TFT.REDTAB)
tft.rotation(2)
LCD_ShowBmp(tft,'WeAct_logo_128_160.bmp')
time.sleep(50)
LCD_LEDSet=1
time.sleep(1000)
tft.fill(TFT.BLACK)
tft.text((0, 30), 'Hello WeAct!', TFT.WHITE, sysfont, 2, nowrap=False)

sensor.reset()                      # Reset and initialize the sensor.
sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE)
sensor.set_framesize(sensor.QVGA)   # Set frame size to QVGA (320x240)

if sensor.get_id() == sensor.OV7725:
    sensor.set_hmirror(True)
    sensor.set_vflip(True)

sensor.skip_frames(time = 1000)     # Wait for settings take effect.
clock = time.clock()                # Create a clock object to track the FPS.

while(True):

    clock.tick()                    # Update the FPS clock.
    img = sensor.snapshot()         # Take a picture and return the image.
    print(clock.fps())              # Note: OpenMV Cam runs about half as fast when connected
                                    # to the IDE. The FPS should increase once disconnected.
    tft.image(0,0,128-1,160-1,img.copy([80,80,128,160]))


在这里插入图片描述
4、显示字符和字符串,读懂上面的程序,修改显示内容就可以了。

作业:在某个坐标显示字符L。某个坐标显示ABC字符串;

5、显示整数和浮点数
用类型转换的函数,将整数或者浮点数转换为字符串,再进行显示;
str函数。
比如
a=125
显示的时候,把显示的内容换成str(a)
就可以,同理也用于浮点数的显示。

作业实现。

  • 3
    点赞
  • 23
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值