mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00

Screen support for the following displays: Adafruit pitft (2,4" and 2,8" tested) Adafruit tft bonnet Pimoroni pirate audio Waveshare OLED/LCD hat
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
# workinprogress based on the displayhatmini driver
|
|
# LCD support OK
|
|
# OLED support ongoing
|
|
# board GPIO:
|
|
# Key1: GPIO4 / pin7
|
|
# Key2: GPIO17 / pin11
|
|
# Key3: GPIO23 / pin16
|
|
# Key4: GPIO24 / pin18
|
|
# OLED SDA: GPIO2 / pin3
|
|
# OLED SCL: GPIO3 / pin5
|
|
# OLED info:
|
|
# driver: SSD1315 (I2C)
|
|
# resolution: 128x64
|
|
# I2C address: 0x3C 0x3D
|
|
# HW datasheet: https://www.waveshare.com/wiki/OLED/LCD_HAT_(A)
|
|
|
|
import logging
|
|
|
|
import pwnagotchi.ui.fonts as fonts
|
|
from pwnagotchi.ui.hw.base import DisplayImpl
|
|
|
|
|
|
class Waveshareoledlcd(DisplayImpl):
|
|
def __init__(self, config):
|
|
super(Waveshareoledlcd, self).__init__(config, 'waveshareoledlcd')
|
|
|
|
def layout(self):
|
|
fonts.setup(12, 10, 12, 70, 25, 9)
|
|
self._layout['width'] = 320
|
|
self._layout['height'] = 240
|
|
self._layout['face'] = (0, 36)
|
|
self._layout['name'] = (150, 36)
|
|
self._layout['channel'] = (0, 0)
|
|
self._layout['aps'] = (40, 0)
|
|
self._layout['uptime'] = (240, 0)
|
|
self._layout['line1'] = [0, 14, 320, 14]
|
|
self._layout['line2'] = [0, 220, 320, 220]
|
|
self._layout['friend_face'] = (0, 130)
|
|
self._layout['friend_name'] = (40, 135)
|
|
self._layout['shakes'] = (0, 220)
|
|
self._layout['mode'] = (280, 220)
|
|
self._layout['status'] = {
|
|
'pos': (150, 48),
|
|
'font': fonts.status_font(fonts.Medium),
|
|
'max': 20
|
|
}
|
|
|
|
return self._layout
|
|
|
|
def initialize(self):
|
|
logging.info("initializing Waveshare OLED/LCD hat")
|
|
from pwnagotchi.ui.hw.libs.waveshare.oledlcd.ST7789 import ST7789
|
|
self._display = ST7789(0,0,22,18)
|
|
|
|
def render(self, canvas):
|
|
self._display.display(canvas)
|
|
|
|
def clear(self):
|
|
self._display.clear() |