Micropython学习交流群 学习QQ群:786510434 提供多种固件下载和学习交流。
Micropython-扇贝物联 QQ群:31324057 扇贝物联是一个让你与智能设备沟通更方便的物联网云平台
Micropython学习交流群 学习QQ群:468985481 学习交流ESP8266、ESP32、ESP8285、wifi模块开发交流、物联网。
Micropython老哥俩的IT农场分享QQ群:929132891 为喜欢科创制作的小白们分享一些自制的计算机软硬件免费公益课程,由两位多年从事IT研发的中年大叔发起。
代码来源: QQ群主786510434 群主分享
演示:
完整代码+字库:链接: https://pan.baidu.com/s/1MfOWSx7SK4UGovmD0HzPUQ?pwd=dckx 提取码: dckx
main.py
from machine import SPI,Pin,PWM import st7735 import time,random from bmpdecoder import bmpData,bmpFileData def initDisplay(): global display,tftVdd tftVdd = PWM(Pin(5),freq =1000,duty = 1023) display = st7735.TFT( SPI(1,baudrate=60000000, polarity=0, phase=0, sck=Pin(0),mosi=Pin(1),miso=Pin(9)), 10,2,3)#spi, aDC, aReset, aCS,ScreenSize = (160, 160) display.initr() display.invertcolor(True) display.rotation(1) display._offset = (1,26)#(26,1) display.fill(0) initDisplay() import zhFont2tft as font tftfont = font.Font16('font1616.ebin') tftfont.text(0,0,'中文测试,你好世界.hello world',display,color = [0,255,0],backgroundcolor = [255,0,0])
zhFont2tft.py
def getbin(inta: int, x: int) -> int: return (inta & (1<>x def rgb565(bgr): return (bgr[0]&0xf8|(bgr[1]&0xfc)>>5),((bgr[1]&0x1C)<>3) def chsC2enc(d): if 0x4e00<=d<=0x9fa5 or d < 128: return d if(d == 0xff0c): return 0x2c elif(d == 0x3002): return 0x2e elif(d == 0xff1a): return 0x3b elif(d == 0x201c or d == 0x201d): return 0x22 elif(d == 0x2019 or d == 0x2018): return 0x27 elif(d == 0x3010): return 0x5b elif(d == 0x3011): return 0x5d elif(d == 0xff08): return 0x28 elif(d == 0xff09): return 0x29 elif(d==0xff1b): return 0x3b elif(d == 0x3001): return 0xb7 elif(d == 0xff01): return 0x21 print(d,chr(d)) class Font16: def __init__(self,filename) -> None: self.bias = 0x4e00 self.h = 16 self.w = 16 #self.end = 0x9fa5 self.f = open(filename,'rb') if(self.f.read(3) != b'f16'): raise TypeError("!!!Font not support!!!") def text(self,x,y,data,display,width = 2,color = [255,255,255],backgroundcolor = [0,0,0],linecount = 12): color = bytearray(rgb565(color)) backgroundcolor = bytearray(rgb565(backgroundcolor)) i = 0 # 换字 p = y # 换行 for d in data: d = ord(d) d = chsC2enc(d) if 0< d = 0x4e00: self.f.seek((d-self.bias+128)*32 +3) fromD = x+p*25+i*width display._setwindowloc((x+i*self.w,p),(x+ i*self.w +self.w - 1, p + self.h - 1)) for charData in range(16): temp = self.f.read(1)[0] for index in range(8): if(getbin(temp,8-index)): display._writedata(color) else: display._writedata(backgroundcolor) temp = self.f.read(1)[0] for index in range(8): if(getbin(temp,8-index)): display._writedata(color) else: display._writedata(backgroundcolor) i = i+1 if i>= linecount: #print(i) p += 16 i = 0 def __del__(self): self.data.close()
Copyright © 2014 ESP56.com All Rights Reserved
执行时间: 0.0085079669952393 seconds