差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

后一修订版
前一修订版
microgui_dds [2021/11/05 22:27]
gongyusu 创建
microgui_dds [2021/11/06 21:09] (当前版本)
gongyusu
行 1: 行 1:
-## MicroGUI based DDS+## 基于MicroPython的Micro-GUI 
 +来自[[https://​github.com/​peterhinch/​micropython-micro-gui|Peter Hinch在Github上的项目分享]] 
 +它是一个轻量级的、可移植的MicroPython GUI库,用于显示,并从framebuf子类化了驱动程序。它是用Python编写的,可以在标准的MicroPython固件构建下运行。输入资料的选项包括:​ 
 +  - 根据应用程序,通过2到5个按钮。 
 +  - 通过一个开关导航操纵杆。 
 +  - 通过两个按钮和一个像这样的旋转编码器。 
 + 
 +由于对输入的支持,它比nano-gui更大、更复杂。它可以在屏幕之间切换和启动模态窗口。除了nano-gui小部件外,它还支持列表框、下拉列表、各种输入或显示浮点值的方法以及其他小部件。 
 +它与nano-gui的所有显示驱动程序兼容,因此可移植到各种显示器上。它还可以在主机之间移植。
  
 ### UI ### UI
行 506: 行 514:
 </​code>​ </​code>​
  
 +### Hardware_setup
 +<code python>
 +# hardware_setup.py customised for KMRTM28028-SPI 8-Jul-21 ws
 +
 +# Released under the MIT License (MIT). See LICENSE.
 +# Copyright (c) 2021 Peter Hinch
 +
 +# As written, supports:
 +# ili9341 240x320 displays on Pi Pico
 +# Initialisation procedure designed to minimise risk of memory fail
 +# when instantiating the frame buffer. The aim is to do this as early as
 +# possible before importing other modules.
 +
 +# WIRING
 +# Pico      Display
 +# GPIO Pin
 +# 5V   ​na VCC
 +# 3v3  36   LED
 +# IO21 27   ​RESET ​
 +# IO20 26   D/C
 +# IO19 25   ​SD ​  (AKA MOSI)
 +# IO18 24   ​CLK ​ Hardware SPI0
 +# GND  23 GND
 +# IO17 22   CS
 +# IO16 21   SDO (AKA MISO)
 +#           Miso is assigned, because SPI0 default pin is used otherwise, not used here
 +
 +# Pushbuttons are wired between the pin and Gnd 
 +# remark: using hardware debounce results eliminates (rare) hang ups of RP2040
 +# Pico pin  Function
 +# IO11 15   ​Select next control
 +# IO12 16   ​Select previous control
 +# IO13 17   ​Select / operate current control
 +# IO14 19   ​Increase value of current control
 +# IO15 20   ​Decrease value of current control
 +# n/a  18   Gnd
 +
 +from machine import Pin, SPI, freq
 +import gc
 +
 +from drivers.ili93xx.ili9341 import ILI9341 as SSD
 +freq(250_000_000) ​ # RP2 overclock
 +# Create and export an SSD instance
 +pdc = Pin(20, Pin.OUT, value=0) ​ # Arbitrary pins
 +prst = Pin(21, Pin.OUT, value=1)
 +pcs = Pin(17, Pin.OUT, value=1)
 +spi = SPI(0, baudrate=30_000_000,​ mosi=Pin(19),​ miso=Pin(16),​ sck=Pin(18))
 +gc.collect() ​ # Precaution before instantiating framebuf
 +ssd = SSD(spi, pcs, pdc, prst, usd=False)
 +
 +from gui.core.ugui import Display
 +# Create and export a Display instance
 +# Define control buttons
 +nxt = Pin(11, Pin.IN) ​ # Move to next control
 +prev = Pin(12, Pin.IN) ​ # Move to previous control
 +sel = Pin(13, Pin.IN) ​ # Operate current control
 +increase = Pin(15, Pin.IN) ​ # Increase control'​s value
 +decrease = Pin(14, Pin.IN) ​ # Decrease control'​s value
 +display = Display(ssd,​ nxt, sel, prev, increase, decrease, encoder=4) # with encoder
 +#display = Display(ssd,​ nxt, sel, prev, increase, decrease) # with buttons
 +
 +</​code>​