五、ST7735代码使用 1.引入库以及一些初始化 代码如下(示例): frommachineimportSPI, Pin# 导入 SPI 和 Pin 类模块fromST7735importTFT, bitSwap, FontLib# 导入 TFT、bitSwap 和 FontLib 类模块importtime# 导入 time 模块importframebuf# 导入 framebuf 模块importrandom# 导入 random 模块USE_FRAME_BUFFER =T...
github地址: https://github.com/boochow/micropython-st7735 以zip方式下载解压后的内容如下, 取红框内容上传到开发板后即可显示图片 调整亮度代码 pwm = PWM(Pin(5)) # 设置PWM的频率和占空比 pwm.freq(1000) pwm.duty(512) # 背光的亮度,范围是0(关闭)到1023(最亮)...
https://github.com/boochow/MicroPython-ST7735 简介 这是GuyCarver的ST7735.py修改版本,用于MicroPython的ST7735 TFT LCD驱动。 GuyCarver的ST7735.py的github网址是: https://github.com/GuyCarver/MicroPython/blob/master/lib/ST7735.py 此版本适用于micropython-esp32。 下载ST7735驱动库 如果从github上下载有...
本系列视频是基于MicroPython和ESP32的物联网开发的课程,所有课程的资源都是免费开放,每周二10点更新,需要配套资料的小伙伴进群索取,QQ群:929132891。(也可以来这里下载 https://github.com/wyf97402/-MicroPython-ESP32-), 视频播放量 2353、弹幕量 1、点赞数 38、
MicroPython-ST7735 This is a modified version ofGuyCarver's ST7735.pyST7735 TFT LCD driver for MicroPython. A font file is necessary for displaying text (some font files are inGuyCarver's repo). Text nowrap option added(default: nowrap=False). ...
#Translated by Guy Carver from the ST7735 sample code. #Modirfied for micropython-esp32 by boochow import machine import time from math import sqrt #TFTRotations and TFTRGB are bits to set # on MADCTL to control display rotation/color layout #Looking at display with pins on top...
A simple menu library for Micropython. MicroPython 的简易菜单库 - micropython-easymenu/driver/st7735_spi.mpy at main · funnygeeker/micropython-easymenu
#@micropython.native def _reset( self ) : '''Reset the device.''' self.dc(0) self.reset(1) time.sleep_us(500) self.reset(0) time.sleep_us(500) self.reset(1) time.sleep_us(500) def init_7735 ( self, Tabcolor) : self.tabcolor = Tabcolor if self.tabcolor...
MicroPython固件 采用的是带中文字库的固件,固件资源下载地址:https://github.com/kaixindelele/ssd1306-MicroPython-ESP32-Chinese/ 根据个人开发板情况选择对应的固件,虽然本示例未使用字体,但是需要使用此固件才能运行,不然运行会报错。 ST7735驱动模块 st7735.py代码(保存到MicroPython设备上) ...