made changes from klardotsh's review
This commit is contained in:
143
kmk/extensions/peg_oled_display.py
Normal file
143
kmk/extensions/peg_oled_display.py
Normal file
@@ -0,0 +1,143 @@
|
||||
import busio
|
||||
import gc
|
||||
|
||||
import adafruit_displayio_ssd1306
|
||||
import displayio
|
||||
import terminalio
|
||||
from adafruit_display_text import label
|
||||
|
||||
from kmk.extensions import Extension
|
||||
|
||||
|
||||
class OledDisplayMode:
|
||||
TXT = 0
|
||||
IMG = 1
|
||||
|
||||
|
||||
class OledReactionType:
|
||||
STATIC = 0
|
||||
LAYER = 1
|
||||
|
||||
|
||||
class Oled(Extension):
|
||||
def __init__(
|
||||
self,
|
||||
views,
|
||||
toDisplay=OledDisplayMode.TXT,
|
||||
oWidth=128,
|
||||
oHeight=32,
|
||||
flip: bool = False,
|
||||
):
|
||||
displayio.release_displays()
|
||||
self.rotation = 180 if flip else 0
|
||||
self._views = views
|
||||
self._toDisplay = toDisplay
|
||||
self._width = oWidth
|
||||
self._height = oHeight
|
||||
self._prevLayers = 0
|
||||
gc.collect()
|
||||
|
||||
def returnCurrectRenderText(self, layer, singleView):
|
||||
# for now we only have static things and react to layers. But when we react to battery % and wpm we can handle the logic here
|
||||
if singleView[0] == OledReactionType.STATIC:
|
||||
return singleView[1][0]
|
||||
if singleView[0] == OledReactionType.LAYER:
|
||||
return singleView[1][layer]
|
||||
|
||||
def renderOledTextLayer(self, layer):
|
||||
splash = displayio.Group()
|
||||
self._display.show(splash)
|
||||
splash.append(
|
||||
label.Label(
|
||||
terminalio.FONT,
|
||||
text=self.returnCurrectRenderText(layer, self._views[0]),
|
||||
color=0xFFFFFF,
|
||||
x=0,
|
||||
y=10,
|
||||
)
|
||||
)
|
||||
splash.append(
|
||||
label.Label(
|
||||
terminalio.FONT,
|
||||
text=self.returnCurrectRenderText(layer, self._views[1]),
|
||||
color=0xFFFFFF,
|
||||
x=64,
|
||||
y=10,
|
||||
)
|
||||
)
|
||||
splash.append(
|
||||
label.Label(
|
||||
terminalio.FONT,
|
||||
text=self.returnCurrectRenderText(layer, self._views[2]),
|
||||
color=0xFFFFFF,
|
||||
x=0,
|
||||
y=25,
|
||||
)
|
||||
)
|
||||
splash.append(
|
||||
label.Label(
|
||||
terminalio.FONT,
|
||||
text=self.returnCurrectRenderText(layer, self._views[3]),
|
||||
color=0xFFFFFF,
|
||||
x=64,
|
||||
y=25,
|
||||
)
|
||||
)
|
||||
gc.collect()
|
||||
|
||||
def renderOledImgLayer(self, layer):
|
||||
splash = displayio.Group()
|
||||
self._display.show(splash)
|
||||
odb = displayio.OnDiskBitmap(
|
||||
'/' + self.returnCurrectRenderText(layer, self._views[0])
|
||||
)
|
||||
image = displayio.TileGrid(odb, pixel_shader=odb.pixel_shader)
|
||||
splash.append(image)
|
||||
gc.collect()
|
||||
|
||||
def updateOLED(self, sandbox):
|
||||
if self._toDisplay == OledDisplayMode.TXT:
|
||||
self.renderOledTextLayer(sandbox.active_layers[0])
|
||||
if self._toDisplay == OledDisplayMode.IMG:
|
||||
self.renderOledImgLayer(sandbox.active_layers[0])
|
||||
gc.collect()
|
||||
|
||||
def on_runtime_enable(self, sandbox):
|
||||
return
|
||||
|
||||
def on_runtime_disable(self, sandbox):
|
||||
return
|
||||
|
||||
def during_bootup(self, board):
|
||||
displayio.release_displays()
|
||||
i2c = busio.I2C(board.SCL, board.SDA)
|
||||
self._display = adafruit_displayio_ssd1306.SSD1306(
|
||||
displayio.I2CDisplay(i2c, device_address=0x3C),
|
||||
width=self._width,
|
||||
height=self._height,
|
||||
rotation=self.rotation,
|
||||
)
|
||||
self.renderOledImgLayer(0)
|
||||
return
|
||||
|
||||
def before_matrix_scan(self, sandbox):
|
||||
if sandbox.active_layers[0] != self._prevLayers:
|
||||
self._prevLayers = sandbox.active_layers[0]
|
||||
self.updateOLED(sandbox)
|
||||
return
|
||||
|
||||
def after_matrix_scan(self, sandbox):
|
||||
|
||||
return
|
||||
|
||||
def before_hid_send(self, sandbox):
|
||||
return
|
||||
|
||||
def after_hid_send(self, sandbox):
|
||||
return
|
||||
|
||||
def on_powersave_enable(self, sandbox):
|
||||
return
|
||||
|
||||
def on_powersave_disable(self, sandbox):
|
||||
return
|
Reference in New Issue
Block a user