MicroPython动手做(14)——掌控板之OLED屏幕-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

楼主: eagler8

MicroPython动手做(14)——掌控板之OLED屏幕

[复制链接]
 楼主| 发表于 2020-4-18 16:03 | 显示全部楼层
08.gif
 楼主| 发表于 2020-4-18 16:34 | 显示全部楼层

7、动态曲线图形

[mw_shl_code=arduino,true]from mpython import *
import time

def testdrawline():
    for i in range(0,64):
        oled.line(0,0,i*2,63,1)
        oled.show()
    for i in range(0,32):
        oled.line(0,0,127,i*2,1)
        oled.show()
    time.sleep_ms(250)
    oled.fill(0)
    oled.show()
    for i in range(0,32):
        oled.line(0,63,i*4,0,1)
        oled.show()
    for i in range(0,16):
        oled.line(0,63,127,(64-4*i)-1,1)
        oled.show()
    time.sleep_ms(250)
    oled.fill(0)
    oled.show()
    for i in range(1,32):
        oled.rect(2*i,2*i,(128-4*i)-1,(64-2*i)-1,1)
        oled.show()

testdrawline()[/mw_shl_code]
 楼主| 发表于 2020-4-19 06:24 | 显示全部楼层
14.gif
 楼主| 发表于 2020-4-19 07:15 | 显示全部楼层
8、oled对象
oled对象为framebuf的衍生类,继承framebuf的方法。

oled.poweron()
开启显示屏电源。

oled.poweroff()
关闭显示器电源。

oled.contrast(brightness)
设置显示屏亮度。
brightness 亮度,范围0~255

oled.invert(n)
翻转像素点。当n=1时,未填充像素点点亮,填充像素点灭。当n=0时,则反。默认启动是填充像素点点亮。

oled.DispChar(s, x, y, mode=TextMode.normal)
oled屏显示文本。采用 Google Noto Sans CJK 开源无衬线字体字体。字体高度16像素点,支持英文,简体中文繁体中文,日文和韩文语言。 当显示字符串超出显示屏宽度可自动换行。
返回(字符总像素点宽度,续接显示的x,y坐标)的二元组。

s -需要显示的文本。
x 、y -文本的左上角作为起点坐标。
mode - 设置文本模式,默认为TextMode.normal

TextMode.normal - 等于1 。普通模式,文本显示白色,背景为黑色。
TextMode.rev - 等于2 。反转模式,文本显示黑色,背景为白色。
TextMode.trans - 等于3 。透明模式,透明文本意味着文本被写在显示中已经可见的内容之上。不同之处在于,以前屏幕上的内容仍然可以看到,而对于normal,背景将被当前选择的背景颜色所替代。
TextMode.xor - 等于4 。XOR模式,如果背景是黑色的,效果与默认模式(normal模式)相同。如果背景为白色,则反转文本。

oled.show()
将frame缓存发送至oled显示。

 楼主| 发表于 2020-4-19 07:50 | 显示全部楼层
oled.fill(c)
用指定的颜色填充整个帧缓存。 c 为1时,像素点亮;c 为0时,像素点灭。

oled.circle(x, y, radius, c)
绘制圆
x 、y -左上角作为起点坐标。
radius -圆半径大小
c -为1时,像素点亮;c 为0时,像素点灭。

oled.fill_circle(x, y, radius, c)
绘制实心圆
x 、y -左上角作为起点坐标。
radius -圆半径大小
c -为1时,像素点亮;c 为0时,像素点灭。

oled.triangle(x0, y0, x1, y1, x2, y2, c)
绘制三角形
x0 、y0 -三角形上顶点坐标 。
x1 、y1 -三角形左顶点坐标 。
x2 、y2 -三角形左顶点坐标 。
c -为1时,像素点亮;c 为0时,像素点灭。

oled.fill_triangle(x0, y0, x1, y1, x2, y2, c)
绘制实心三角形
x0 、y0 -三角形上顶点坐标 。
x1 、y1 -三角形左顶点坐标 。
x2 、y2 -三角形左顶点坐标 。
c -为1时,像素点亮;c 为0时,像素点灭。

oled.bitmap(x, y, bitmap, w, h, c)
绘制bitmap图案
x 、y -左上角作为起点坐标
bitmap -图案bitmap 的btyearray字节数组
w -图案宽度
h -图案高度
c -为1时,像素点亮;

oled.RoundRect(x, y, w, h, r, c)
绘制弧角矩形
x 、y -左上角作为起点坐标
w -图案宽度
h -图案高度
r -圆弧角半径
c -为1时,像素点亮;c 为0时,像素点灭。

 楼主| 发表于 2020-4-19 08:10 | 显示全部楼层
9、实现OLED动态打字效果

[mw_shl_code=arduino,true]# 动态打字效果
from mpython import *
oled.fill(0)

# 显示的字符串
_str = "掌控板是一块MicroPython微控制器板,使用当下最流行的Python编程语言,以便您轻松地将代码从桌面传输到微控制器或嵌入式系统。掌控板是一块普及STEAM创客教育、人工智能教育、编程教育的开源智能硬件。它集成ESP-32高性能双核芯片,支持WiFi和蓝牙双模通信,可作为物联网节点,实现物联网应用。掌控板上配置了OLED显示屏、RGB灯、加速度计、麦克风、光线传感器、蜂鸣器、按键开关、触摸开关、金手指外部拓展接口,支持图形化及python代码编程,可实现智能机器人、创客智造作品等智能控制类应用。利用掌控上丰富的传感器,结合它小尺寸的特点还可以做很多智能穿戴、电子饰品等各种DIY作品应用。"

# 起点坐标   
axis = (0, 0)

# 逐字显示,根据返回的坐标续接显示
for c in _str:
    response = oled.DispChar(c, axis[0], axis[1])
    char_width = response[0]
    axis = response[1]
    oled.show()

    # 满屏时,清屏
    if axis[1] >= 64 - 16 and char_width >= 128-axis[0]:
        print('Clear screen')
        oled.fill(0)[/mw_shl_code]

注解:
oled.DispChar_font(font, s, x, y, invert=False)

自定义字体显示。用户可根据自己需求,在PC端将 otf 、 ttf 标准字体文件通过Python脚本 font_to_py.py 转为输出含字体Bitmap的python源码,调用使用。 返回(字符总像素点宽度,续接显示的x,y坐标)的二元组。

font - 字体对象。font_to_py.py 脚本转换得到的Python源码, 放到文件系统中,注意,在使用函数前须导入font文件。
s - 显示的字符串
x 、 y - 文本的左上角作为起点坐标。
invert - 显示像素点翻转。

在PC端使用font_to_py.py脚本转换字体:
# 转换高度为16像素只包含ASCII字符集
font_to_py.py -x FreeSans.ttf 16 myfont.py

# 转换高度为16像素指定Unicode字符集,-c参数后面为你指定的字符集
font_to_py.py -x simfang.ttf 16 simfang.py -c  ¬!"#£$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~°Ωαβγδθλμπωϕ£

 楼主| 发表于 2020-4-19 08:44 | 显示全部楼层
15.jpg
 楼主| 发表于 2020-4-19 08:45 | 显示全部楼层
16.jpg
 楼主| 发表于 2020-4-19 09:47 | 显示全部楼层
实验记录视频:掌控板OLED动态打字效果(29秒)

https://v.youku.com/v_show/id_XNDYzODQyNzkzMg==.html



 楼主| 发表于 2020-4-19 10:52 | 显示全部楼层
10、动态正弦与圆的关系
通过掌控板载的oled,显示正弦与圆的关系。

[mw_shl_code=arduino,true]#MicroPython动手做(14)——掌控板之OLED屏幕
#动态正弦与圆的关系

from mpython import *
from machine import Timer
import math

def upRange(start, stop, step):
    while start <= stop:
        yield start
        start += abs(step)

def downRange(start, stop, step):
    while start >= stop:
        yield start
        start -= abs(step)

def timer1_tick(_):
    global Dy, Dx, i, j, my_list, _item
    oled.fill_rect(48, 0, 80, 64, 0)
    oled.hline(48, 32, 80, 1)
    oled.vline(48, 8, 50, 1)
    j_end = int(len(my_list) - 1)
    for j in (0 <= j_end) and upRange(0, j_end, 1) or downRange(0, j_end, 1):
        oled.pixel(((len(my_list) + 49) - j), my_list[j], 1)

tim1 = Timer(1)

def add_to_list(_item):
    global Dy, Dx, i, j, my_list
    my_list.append(_item)
    if len(my_list) > 72:
        my_list.pop(0)


my_list = []
oled.fill(0)
tim1.init(period=100, mode=Timer.PERIODIC, callback=timer1_tick)
while True:
    for i in range(0, 361, 5):
        oled.fill_rect(0, 0, 47, 64, 0)
        oled.circle(20, 32, 20, 1)
        Dx = int((20 + math.cos(math.radians(i)) * 20))
        Dy = int((32 - math.sin(math.radians(i)) * 20))
        oled.line(20, 32, Dx, Dy, 1)
        oled.line(Dx, Dy, 46, Dy, 1)
        oled.show()
        add_to_list(Dy)
[/mw_shl_code]

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-27 09:50 , Processed in 0.086319 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表