kopia lustrzana https://github.com/peterhinch/micropython-nano-gui
124 wiersze
4.0 KiB
Python
124 wiersze
4.0 KiB
Python
# asnano_sync.py Test/demo program for use of nanogui with uasyncio
|
|
# Uses Adafruit ssd1351-based OLED displays (change height to suit)
|
|
# Adafruit 1.5" 128*128 OLED display: https://www.adafruit.com/product/1431
|
|
# Adafruit 1.27" 128*96 display https://www.adafruit.com/product/1673
|
|
|
|
# Copyright (c) 2020 Peter Hinch
|
|
# Released under the MIT License (MIT) - see LICENSE file
|
|
|
|
# WIRING (Adafruit pin nos and names)
|
|
# Pyb SSD
|
|
# 3v3 Vin (10)
|
|
# Gnd Gnd (11)
|
|
# X1 DC (3 DC)
|
|
# X2 CS (5 OC OLEDCS)
|
|
# X3 Rst (4 R RESET)
|
|
# X6 CLK (2 CL SCK)
|
|
# X8 DATA (1 SI MOSI)
|
|
|
|
height = 96 # 1.27 inch 96*128 (rows*cols) display
|
|
# height = 128 # 1.5 inch 128*128 display
|
|
|
|
import machine
|
|
import gc
|
|
from ssd1351 import SSD1351 as SSD
|
|
|
|
# Initialise hardware and framebuf before importing modules
|
|
#pdc = machine.Pin('X1', machine.Pin.OUT_PP, value=0)
|
|
#pcs = machine.Pin('X2', machine.Pin.OUT_PP, value=1)
|
|
#prst = machine.Pin('X3', machine.Pin.OUT_PP, value=1)
|
|
#spi = machine.SPI(1)
|
|
pdc = machine.Pin('Y1', machine.Pin.OUT_PP, value=0)
|
|
pcs = machine.Pin('Y2', machine.Pin.OUT_PP, value=1)
|
|
prst = machine.Pin('Y3', machine.Pin.OUT_PP, value=1)
|
|
spi = machine.SPI(2)
|
|
gc.collect() # Precaution befor instantiating framebuf
|
|
ssd = SSD(spi, pcs, pdc, prst, height) # Create a display instance
|
|
|
|
import uasyncio as asyncio
|
|
import pyb
|
|
import uos
|
|
from writer import CWriter
|
|
from nanogui import LED, Meter, refresh
|
|
refresh(ssd)
|
|
|
|
# Fonts
|
|
import arial10, freesans20
|
|
|
|
GREEN = SSD.rgb(0, 255, 0)
|
|
RED = SSD.rgb(255, 0, 0)
|
|
YELLOW = SSD.rgb(255, 255, 0)
|
|
BLACK = 0
|
|
|
|
color = lambda v : RED if v > 0.7 else YELLOW if v > 0.5 else GREEN
|
|
txt = lambda v : 'ovr' if v > 0.7 else 'high' if v > 0.5 else 'ok'
|
|
|
|
class MyMeter(Meter):
|
|
def __init__(self, x, text):
|
|
CWriter.set_textpos(ssd, 0, 0) # In case previous tests have altered it
|
|
wri = CWriter(ssd, arial10, GREEN, BLACK, verbose=False)
|
|
wri.set_clip(True, True, False)
|
|
super().__init__(wri, 5, x, divisions = 4, ptcolor=YELLOW, label=text,
|
|
style=Meter.BAR, legends=('0.0', '0.5', '1.0'))
|
|
self.led = LED(wri, ssd.height - 16 - wri.height, x, bdcolor=YELLOW, label ='over')
|
|
self.task = asyncio.create_task(self._run())
|
|
|
|
async def _run(self):
|
|
while True:
|
|
v = int.from_bytes(uos.urandom(3),'little')/16777216
|
|
self.value(v, color(v))
|
|
self.led.color(color(v))
|
|
self.led.text(txt(v), fgcolor=color(v))
|
|
# Slow asynchronous data acquisition might occur here. Note
|
|
# that meters update themselves asynchronously (in a real
|
|
# application as data becomes available).
|
|
await asyncio.sleep(v) # Demo variable times
|
|
|
|
async def flash(n, t):
|
|
led = pyb.LED(n)
|
|
try:
|
|
while True:
|
|
led.toggle()
|
|
await asyncio.sleep_ms(t)
|
|
except asyncio.CancelledError:
|
|
led.off() # Demo tidying up on cancellation.
|
|
|
|
class Killer:
|
|
def __init__(self):
|
|
self.sw = pyb.Switch()
|
|
|
|
async def wait(self, t):
|
|
while t >= 0:
|
|
if self.sw():
|
|
return True
|
|
await asyncio.sleep_ms(50)
|
|
t -= 50
|
|
return False
|
|
|
|
# The main task instantiates other tasks then does the display update process.
|
|
async def main():
|
|
print('Press Pyboard usr button to stop test.')
|
|
# Asynchronously flash Pyboard LED's. Because we can.
|
|
leds = [asyncio.create_task(flash(1, 200)), asyncio.create_task(flash(2, 233))]
|
|
# Task for each meter and GUI LED
|
|
mtasks =[MyMeter(2, 'left').task, MyMeter(50, 'right').task, MyMeter(98, 'bass').task]
|
|
k = Killer()
|
|
while True:
|
|
if await k.wait(800): # Switch was pressed
|
|
break
|
|
refresh(ssd)
|
|
for task in mtasks + leds:
|
|
task.cancel()
|
|
await asyncio.sleep_ms(0)
|
|
ssd.fill(0) # Clear display at end.
|
|
refresh(ssd)
|
|
|
|
def test():
|
|
try:
|
|
asyncio.run(main())
|
|
finally: # Reset uasyncio case of KeyboardInterrupt
|
|
asyncio.new_event_loop()
|
|
print('asnano_sync.test() to re-run test.')
|
|
|
|
test()
|