【雕爷学编程】MicroPython动手做(15)——掌控板之AB按键3

知识点:什么是掌控板?
掌控板是一块普及STEAM创客教育、人工智能教育、机器人编程教育的开源智能硬件。它集成ESP-32高性能双核芯片,支持WiFi和蓝牙双模通信,可作为物联网节点,实现物联网应用。同时掌控板上集成了OLED显示屏、RGB灯、加速度计、麦克风、光线传感器、蜂鸣器、按键开关、触摸开关、金手指外部拓展接口,支持图形化及MicroPython代码编程,可实现智能机器人、创客智造作品等智能控制类应用。

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

掌控板硬件特性:
ESP-32主控
处理器:Tensilica LX6双核处理器(一核处理高速连接;一核独立应用开发)
主频:高达240MHz的时钟频率
SRAM:520KB
Flash:8MB
Wi-Fi标准:FCC/CE/TELEC/KCC
Wi-Fi协议:802.11 b/g/n/d/e/i/k/r (802.11n,速度高达150 Mbps),A-MPDU和A-MSDU聚合,支持0.4us防护间隔
频率范围:2.4~2.5 GHz
蓝牙协议:符合蓝牙v4.2 BR/EDR和BLE标准
蓝牙音频:CVSD和SBC音频低功耗:10uA
供电方式:Micro USB供电
工作电压:3.3V
最大工作电流:200mA
最大负载电流:1000mA
掌控板载
三轴加速度计MSA300,测量范围:±2/4/8/16G
地磁传感器MMC5983MA,测量范围:±8 Gauss;精度0.4mGz,电子罗盘误差±0.5°
光线传感器
麦克风
3 颗全彩ws2812灯珠
1.3英寸OLED显示屏,支持16*16字符显示,分辨率128x64
无源蜂鸣器
支持2个物理按键(A/B)、6个触摸按键
支持1路鳄鱼夹接口,可方便接入各种阻性传感器
拓展接口
20通道数字I/O, (其中支持12路PWM,6路触摸输入)
5通道12bit模拟输入ADC,P0~P4
1路的外部输入鳄鱼夹接口:EXT/GND
支持I2C、UART、SPI通讯协议

在这里插入图片描述
在这里插入图片描述
1、按键开关
主要是指轻触式按键开关,也称之为轻触开关。按键开关是一种电子开关,属于电子元器件类,最早出现在日本[称之为:敏感型开关],使用时以满足操作力的条件向开关操作方向施压开关功能闭合接通,当撤销压力时开关即断开,其内部结构是靠金属弹片受力变化来实现通断的。按键开关由嵌件、基座、弹片、按钮、盖板组成,其中防水类轻触开关在弹片上加一层聚酰亚胺薄膜。

按键开关有接触电阻荷小、精确的操作力误差、规格多样化等方面的优势,在电子设备及白色家电等方面得到广泛的应用如:影音产品、数码产品、遥控器、通讯产品、家用电器、安防产品、玩具、电脑产品、健身器材、医疗器材、验钞笔、雷射笔按键等等。因为按键开关对环境的条件(施压力小于2倍的弹力/环境温湿度条件以及电气性能)大型设备及高负荷的按钮都使用导电橡胶或锅仔开关五金弹片直接来代替,比如医疗器材、电视机遥控器等。

关于五脚按键开关的脚位问题:两个引脚为一组,向开关体正确施压时四个引脚相导通,第五个引脚为接地作用。

按键开关是随着电子技术发展的要求而开发的第四代开关产品,最早的体积为12mm12mm,8mm8mm两种,现在为6mm6mm。产品结构有立式、卧式和卧式带地端三种,现在又有组合式(3M、4M、SM、6M、SM)和电位器按键开关组合两类,满足国内各种电子产品要求。安装尺寸有6.5mm4.5mm,5.5mm4mm和6mm4mm三种。国外已有4.5mm*4.5mm小型按键开关和片式按键开关,片式按键开关适合于表面组装。

现在已有第五代开关—薄膜开关,功能与按键开关相同,主要用于电子仪器和数控机床,但电阻大、手感差。为了克服手感差的现象,也有在薄膜开关内不是用银层做接触点,而是装上接触簧片。

按键开关分成两大类:利用金属簧片作为开关接触片的称按键开关,接触电阻小,手感好,有“滴答”清脆声。利用导电橡胶作为接触通路的开关习惯称为导电橡胶开关。开关手感好,但接触电阻大,一般在100一300n。按键开关的结构是靠按键向下移动,使接触簧片或导电橡胶块接触焊片,形成通路。

按键开关的操作力与簧片所处的状态有关。开始力与簧片的压缩的距离成正比当簧片压缩到5%一70%时操作力突然减少,并伴有“滴答”声。导龟橡胶开关一般有两种结构。操作力曲线随橡胶块的几何形状不同而有很大的差异。

相对湿度:<95%
额定电压:12V
额定电流:50mA
温度:-25~70℃

按键开关的主要用途有彩色电视机、黑白电视机、音响设备、录像机、摄像机、计算机、游戏机、传真机、对讲机、警棍、机床控制装置、复印、打印机、电子仪器、仪表和其它家用电器。

在这里插入图片描述

2、在掌控板上部边沿有按压式A、B两个按键

当按下按键时为低电平,否则高电平。在掌控板A,B按键按下的过程如下述,当按下时,电平从高变低,在高电平(1)变为低电平(0)的那一瞬间叫作下降沿。当按键松开时,电平从低变高,在低电平(0)变为高电平(1)的那一瞬间叫作上升沿。 我们可以通过获取电平变化来获取,当前按键状态。
P5、P11是掌控板的按键A、B的IO引脚,为避免冲突,限定拓展板的P5、P11引脚只能用于数字电平输入,且拓展板会对输入电平进行翻转。

在这里插入图片描述

在这里插入图片描述
11、A、B键控制图片转换显示

#MicroPython动手做(15)——掌控板之AB按键
#A、B键控制图片转换显示

from mpython import *
import music

def callback_button_a_pressed():
  oled.fill(0)
  bmp_wZZv = bytearray([0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x89,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x19,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x39,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0x0,0x3f,0xff,0xff,0xff,0xff,0xff,0xfe,0x79,0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x1a,0xf,0xff,0xff,0xff,0xff,0xff,0xfe,0xf9,0xff,0xff,0xff,0x3f,0xff,0xff,0x83,0xff,0xe0,0x0,0x0,0x0,0x7f,0xff,0xfc,0xf9,0xff,0xff,0xfc,0xf,0xff,0xfe,0x0,0x7f,0xf0,0x0,0x0,0x0,0x3f,0xff,0xfc,0xf9,0xff,0xf8,0x0,0xe7,0xff,0xfc,0x7e,0xf,0xfc,0xff,0xf3,0xff,0xbf,0xff,0xfc,0xf9,0xff,0xe0,0x0,0x1,0xff,0xf9,0xff,0xc7,0xfe,0x7f,0xf3,0xff,0x9f,0xff,0xfc,0xf9,0xff,0x80,0x0,0x0,0x3,0xf3,0xff,0xc3,0xff,0x3f,0xf3,0xff,0x80,0x3f,0xfe,0xf9,0xfe,0x0,0x7,0xff,0xc0,0x73,0xff,0xc1,0xff,0x9f,0xf3,0xff,0x80,0x0,0x7e,0xf9,0xe0,0x0,0xf,0xff,0xff,0x7,0xf0,0x0,0xff,0x8f,0xf3,0xff,0x80,0x0,0x0,0xf9,0xf0,0x0,0xf,0xff,0xff,0xc7,0x80,0x30,0x7e,0xf,0xf3,0xff,0x80,0x0,0x0,0xf9,0x90,0x0,0x1f,0xbf,0xff,0xf3,0x1f,0x38,0x60,0x3f,0xf7,0xff,0x80,0x0,0x0,0xf9,0xc0,0x0,0x1f,0x3f,0xff,0xf8,0x7f,0x80,0x3,0xbf,0xff,0xff,0x80,0x0,0x0,0xf9,0xc0,0x0,0x1e,0x41,0xff,0xf8,0xff,0xc2,0x1f,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xe0,0x0,0x1e,0x40,0xff,0xfc,0xff,0xff,0x9f,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xf0,0x0,0x1c,0xb0,0xff,0xfc,0xfc,0xff,0xcf,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xf0,0x0,0x1c,0x90,0xff,0xfe,0x40,0x7f,0xcf,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xf0,0x0,0x1c,0x80,0xfd,0xfe,0x6,0x7f,0xcf,0x9f,0xff,0xff,0x80,0x0,0x0,0x1,0xe0,0x0,0x1c,0xc1,0xfc,0xfe,0x3f,0x3f,0xcf,0x9f,0xff,0xff,0x80,0x0,0x1,0x7,0xe0,0x0,0x1f,0xe3,0xfe,0x7f,0x1f,0x38,0xcf,0x9f,0xff,0xff,0x80,0x0,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0x7f,0x3,0x80,0x4f,0x9f,0xff,0xff,0x81,0xff,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0x3f,0x21,0x9f,0xf,0x9f,0xff,0xff,0xbf,0xff,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0x3f,0x0,0x7f,0x9f,0x9f,0xff,0xff,0xbf,0xff,0xff,0xff,0xe0,0x0,0xf,0xff,0xff,0x3f,0x10,0x3f,0xdf,0x9f,0xff,0xff,0xbf,0xff,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0xbf,0x39,0x0,0x1f,0x80,0x0,0x0,0x3f,0xff,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0xbf,0x3b,0x80,0x1f,0x80,0x0,0x0,0x3f,0xff,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0x3f,0x30,0x3f,0x9f,0x1f,0xff,0xff,0xbf,0xff,0xff,0xff,0xe0,0x0,0x1f,0xff,0xff,0x3f,0x0,0x7f,0x9f,0x1f,0xff,0xff,0xbf,0xff,0xff,0xff,0xe0,0x0,0x3f,0xff,0xff,0x3f,0x1,0x9f,0x1c,0x1f,0xff,0xff,0xbf,0xff,0xff,0xff,0xe0,0x0,0x3f,0xff,0xfe,0x7f,0x3,0x80,0x38,0x9f,0xff,0xff,0x9f,0xff,0xff,0xff,0xe0,0x0,0x7f,0xe3,0xfe,0x7f,0x1f,0x30,0xb1,0xdf,0xff,0xff,0x80,0x1f,0xff,0xff,0xf0,0x0,0x3c,0xc1,0xfc,0xff,0x3f,0x3f,0xb3,0xdf,0xff,0xff,0x80,0x0,0x1f,0xff,0xf0,0x0,0x3c,0xb0,0xfd,0xfe,0x6,0x7f,0x87,0xdf,0xff,0xff,0x80,0x0,0x0,0x1,0xf0,0x0,0x1c,0xb0,0xff,0xfe,0x40,0x73,0x87,0xdf,0xff,0xff,0x80,0x0,0x0,0x21,0xf0,0x0,0x1e,0x80,0xff,0xfe,0xfc,0xe0,0xcf,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xf8,0x0,0x1e,0x40,0xff,0xfc,0xff,0xcc,0xf,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xf8,0x0,0x1e,0x61,0xff,0xf8,0x1f,0xcc,0xf,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xfc,0x0,0x1f,0x3f,0xff,0xf9,0x0,0x0,0x60,0x9f,0xff,0xff,0x80,0x0,0x0,0xf9,0xfc,0x0,0x1f,0xff,0xff,0xf3,0xf0,0x70,0x78,0xf,0xf3,0xff,0x80,0x0,0x0,0xf9,0xfe,0x0,0x1f,0xff,0xff,0xc7,0xff,0xfc,0xff,0x8f,0xf3,0xff,0x80,0x0,0x0,0xf9,0xff,0x0,0x1f,0xff,0xfe,0x7,0xff,0xf9,0xff,0x9f,0xf3,0xff,0x80,0x0,0x0,0xf9,0xff,0x80,0xf,0xff,0xc0,0x73,0xff,0xf1,0xff,0x3f,0xf3,0xff,0x80,0x0,0x6,0x79,0xff,0xc0,0x0,0x0,0x3,0xf9,0xff,0xe7,0xfe,0x3f,0xf3,0xff,0x80,0xf,0xfe,0xf9,0xff,0xe0,0x0,0x3,0xff,0xf8,0xff,0xf,0xfc,0x7f,0xf3,0xff,0x9f,0xff,0xfc,0xf9,0xff,0xf8,0x0,0x67,0xff,0xfe,0x0,0x3f,0xf8,0x0,0x0,0x0,0x3f,0xff,0xfc,0xf9,0xff,0xff,0xfe,0xf,0xff,0xff,0x3,0xff,0xe0,0x0,0x0,0x0,0x3f,0xff,0xfc,0xf9,0xff,0xff,0xff,0xbf,0xff,0xff,0xc1,0xff,0x87,0xff,0xff,0xff,0xff,0xff,0xfc,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xf0,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0xfc,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x79,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x39,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x99,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff])
  oled.Bitmap(0, 0, bmp_wZZv, 128, 64, 1)
  oled.show()


def callback_button_b_pressed():
  oled.fill(0)
  bmp_h61P = bytearray([0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x83,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x99,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9f,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9f,0x3f,0xff,0xff,0xff,0xff,0xff,0xf8,0x0,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0x9f,0x3f,0xff,0xff,0xff,0xff,0xff,0xe1,0xff,0x83,0xff,0xff,0xfd,0xff,0xff,0xff,0x9f,0x3f,0xff,0xfc,0x0,0x0,0x0,0x7,0xff,0xc0,0xff,0xff,0xf0,0x7f,0xff,0xff,0x9f,0x3f,0xff,0xfc,0x0,0x0,0x0,0x1f,0xfc,0x0,0x7f,0xff,0xe6,0x0,0x1f,0xff,0x9f,0x3f,0xff,0xf9,0xff,0xcf,0xfe,0x3f,0xf0,0xff,0x1f,0xff,0xc0,0x0,0x7,0xff,0x9f,0x7f,0xf0,0x1,0xff,0xcf,0xfc,0x7f,0xe7,0xff,0x9f,0xc0,0x0,0x0,0x3,0xff,0x9e,0x60,0x0,0x1,0xff,0xcf,0xfc,0xff,0x8f,0xff,0xce,0x3,0xff,0xf0,0x1,0xff,0x9f,0x0,0x0,0x1,0xff,0xcf,0xf9,0xff,0x9f,0xff,0xe0,0x7f,0xff,0xf8,0x0,0xff,0x9f,0x0,0x0,0x1,0xff,0xcf,0xf1,0xff,0x3f,0xff,0xe3,0xff,0xff,0xf8,0x0,0x7f,0x9f,0x0,0x0,0x1,0xff,0xcf,0xf0,0x1e,0xe,0xf,0xcf,0xff,0xff,0xf8,0x0,0x3f,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0x6,0x0,0x0,0x9f,0xff,0xfc,0xf8,0x0,0x3f,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf0,0x33,0xf8,0x1f,0xff,0x86,0x78,0x0,0x1f,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf0,0x33,0xff,0x3f,0xff,0x2,0x78,0x0,0x1f,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf3,0x7,0x3f,0x7f,0xff,0x1,0x78,0x0,0xf,0x84,0x0,0x0,0x1,0xff,0xff,0xfb,0xe1,0xce,0x2,0x7f,0xff,0xd,0x38,0x0,0xf,0x80,0x0,0x0,0x1,0xff,0xff,0xfb,0xe1,0xfe,0x60,0x7f,0xbf,0xd,0x3c,0x0,0xf,0xff,0xf8,0x0,0x1,0xff,0xff,0xfb,0xcd,0xfc,0xfc,0xff,0x3f,0x83,0x3c,0x0,0xf,0xff,0xff,0xf8,0x1,0xff,0xff,0xfb,0x8d,0xc,0xf8,0xfe,0x7f,0xc7,0xfe,0x0,0x7,0xff,0xff,0xff,0xf9,0xff,0xff,0xf9,0x1c,0x1,0xc0,0xfe,0x7f,0xff,0xfc,0x0,0x7,0xff,0xff,0xff,0xfd,0xff,0xff,0xf8,0x38,0xf9,0x80,0xfc,0xff,0xff,0xfc,0x0,0x7,0xff,0xff,0xff,0xfd,0xff,0xff,0xf8,0xf9,0xfe,0x0,0xfc,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0xff,0xfd,0xff,0xff,0xf8,0xf9,0xfc,0xc,0xfc,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x1,0xf8,0x1,0xdc,0xfd,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x1,0xf8,0x0,0x9c,0xfd,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0xff,0xfd,0xff,0xff,0xf9,0xfb,0xfc,0x8,0xfc,0xff,0xff,0xf0,0x0,0x7,0xff,0xff,0xff,0xfd,0xff,0xff,0xf9,0xf9,0xfe,0x0,0xfc,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0xff,0xfd,0xff,0xff,0xf9,0xf0,0xf9,0x84,0xfc,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0xff,0x81,0xff,0xff,0xf9,0xf2,0x1,0xc0,0xfe,0xff,0xff,0xf8,0x0,0x7,0xff,0xff,0x0,0x1,0xff,0xff,0xf9,0xf3,0x1c,0xf8,0xfe,0x7f,0xc7,0xf8,0x0,0x7,0xe0,0x80,0x0,0x1,0xff,0xff,0xf9,0xf3,0xfc,0xfc,0x7f,0x3f,0x83,0x38,0x0,0x7,0x80,0x0,0x0,0x1,0xff,0xff,0xf9,0xf3,0xfe,0x60,0x7f,0xbf,0x1,0x38,0x0,0xf,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf3,0xfe,0x2,0x7f,0xff,0x9,0x38,0x0,0xf,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf3,0xff,0x3f,0x3f,0xff,0xd,0x38,0x0,0xf,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf9,0xff,0xff,0x3f,0xff,0x2,0x78,0x0,0x7,0x9f,0x0,0x0,0x1,0xff,0xff,0xf9,0xf8,0x43,0xff,0x1f,0xff,0x82,0x78,0x0,0x3,0x9f,0x0,0x0,0x1,0xff,0xff,0xfd,0xc0,0x1,0xfe,0x1f,0xff,0xfc,0xf8,0x0,0x3,0x9f,0x0,0x0,0x1,0xff,0xef,0xfc,0x6,0x1c,0xf8,0xcf,0xff,0xfd,0xf8,0x0,0x9,0x9f,0x0,0x0,0x1,0xff,0xcf,0xf0,0x7e,0xc,0x1,0xe3,0xff,0xff,0xf0,0x0,0xf,0x9f,0x0,0x0,0x1,0xff,0xcf,0xf1,0xff,0x0,0xf,0xe0,0xff,0xff,0xf0,0x0,0x7,0x9f,0x7e,0x0,0x1,0xff,0xcf,0xf9,0xff,0x83,0xff,0xce,0x3,0xff,0xe0,0x0,0x7f,0x9f,0x7f,0xfc,0x1,0xff,0xcf,0xfc,0xff,0xc3,0xff,0xcf,0xc0,0x0,0x0,0x1,0xff,0x9f,0x3f,0xff,0xf9,0xff,0xcf,0xfe,0x7f,0xe3,0xff,0x9f,0xff,0x80,0x0,0x7,0xff,0x9f,0x3f,0xff,0xfd,0xff,0xcf,0xff,0x3f,0xf0,0x7e,0x3f,0xff,0xe7,0x0,0x1f,0xff,0x9f,0x3f,0xff,0xfc,0x0,0x0,0x0,0xf,0xfe,0x0,0x7f,0xff,0xf0,0x3f,0xff,0xff,0x9f,0x3f,0xff,0xfe,0x0,0x0,0x0,0x7,0xff,0xc1,0xff,0xff,0xfc,0xff,0xff,0xff,0x9f,0x7f,0xff,0xff,0xff,0xff,0xff,0xf0,0x58,0x7,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0x7f,0xff,0xff,0xff,0xff,0xff,0xfc,0x0,0x1f,0xff,0xff,0xff,0xff,0xff,0xff,0x9c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x98,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x91,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff])
  oled.Bitmap(0, 0, bmp_h61P, 128, 64, 1)
  oled.show()


def on_button_a_pressed():
  while True:
    if button_a.value() == 0:
      yield callback_button_a_pressed()
    else:
      yield

def on_button_b_pressed():
  while True:
    if button_b.value() == 0:
      yield callback_button_b_pressed()
    else:
      yield

func_button_a_pressed = on_button_a_pressed()
func_button_b_pressed = on_button_b_pressed()
while True:
  next(func_button_a_pressed)
  next(func_button_b_pressed)

Mind+ 图形编程
在这里插入图片描述
在这里插入图片描述

12、AB按键切换声光值与三轴数值

#MicroPython动手做(15)——掌控板之AB按键
#AB按键切换声光值与三轴数值

#MicroPython动手做(15)——掌控板之AB按键
#AB按键切换显示声光值与三轴数值

from mpython import *
import time

def on_button_a_down(_):
    global sensor, switch
    time.sleep_ms(10)
    if button_a.value() == 1: return
    switch = switch + -1
    if switch < 0:
        switch = 2

def on_button_b_down(_):
    global sensor, switch
    time.sleep_ms(10)
    if button_b.value() == 1: return
    switch = switch + 1
    if switch > 2:
        switch = 0

button_a.irq(trigger=Pin.IRQ_FALLING, handler=on_button_a_down)

button_b.irq(trigger=Pin.IRQ_FALLING, handler=on_button_b_down)


switch = 0
oled.fill(0)
oled.DispChar("上一个", 0, 0, 1)
oled.DispChar("下一个", 91, 0, 1)
while True:
    oled.fill_rect(0, 16, 128, 48, 0)
    if switch == 1:
        oled.DispChar((str("声音值:") + str(sound.read())), 30, 28, 1)
    elif switch == 2:
        oled.DispChar((str(" 光线值:") + str(light.read())), 25, 28, 1)
    else:
        oled.DispChar((str("X 轴:") + str(accelerometer.get_x())), 15, 15, 1)
        oled.DispChar((str("Y 轴:") + str(accelerometer.get_y())), 15, 30, 1)
        oled.DispChar((str("Z 轴:") + str(accelerometer.get_z())), 15, 45, 1)
    oled.show()

mPython X 图形编程

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

13、AB按键秒表计时器

秒表主要是用来统计秒数的。它有一般有两个按键。A键和B键。
第一次按下A键时,开始计时。
第二次按下A键时,暂停计时。
再按下A键时,继续上一步暂停的计时。
按下B键,归零。

#MicroPython动手做(15)——掌控板之AB按键
#AB按键秒表计时器

#MicroPython动手做(15)——掌控板之AB按键
#AB按键秒表计时器from mpython import *

import framebuf

import font.digiface_44

import time

from machine import Timer

def timer1_tick(_):
    global aaa, ttt
    ttt = ttt + 1
    oled.fill(0)
    display_font(font.digiface_44, (''.join([str(x) for x in [ttt // 60, ':', ttt % 60]])), 2, 8, False, 2)
    oled.show()

tim1 = Timer(1)

def on_button_a_down(_):
    global aaa, ttt
    time.sleep_ms(10)
    if button_a.value() == 1: return
    if aaa == 1:
        aaa = 0
        tim1.init(period=1000, mode=Timer.PERIODIC, callback=timer1_tick)
    else:
        aaa = 1
        tim1.deinit()

def on_button_b_down(_):
    global aaa, ttt
    time.sleep_ms(10)
    if button_b.value() == 1: return
    ttt = 0
    oled.fill(0)
    display_font(font.digiface_44, '00:00', 2, 8, False, 2)
    oled.show()
    aaa = 1
    tim1.deinit()

def display_font(_font, _str, _x, _y, _wrap, _z=0):
    _start = _x
    for _c in _str:
        _d = _font.get_ch(_c)
        if _wrap and _x > 128 - _d[2]: _x = _start; _y += _d[1]
        if _c == '1' and _z > 0: oled.fill_rect(_x, _y, _d[2], _d[1], 0)
        oled.blit(framebuf.FrameBuffer(bytearray(_d[0]), _d[2], _d[1],
        framebuf.MONO_HLSB), (_x+int(_d[2]/_z)) if _c=='1' and _z>0 else _x, _y)
        _x += _d[2]

button_a.irq(trigger=Pin.IRQ_FALLING, handler=on_button_a_down)

button_b.irq(trigger=Pin.IRQ_FALLING, handler=on_button_b_down)
oled.fill(0)
display_font(font.digiface_44, '00:00', 2, 8, False, 2)
oled.show()
ttt = 0
aaa = 1

mPython 图形编程
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

驴友花雕

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值