Saving work
parent
028fd71cfd
commit
3c199df906
@ -0,0 +1,3 @@
|
|||||||
|
# Project 0
|
||||||
|
|
||||||
|
The is simply an example file used for testing the OS based lvgl micropython builds (unix, macOS). At present the MacOS build.
|
@ -0,0 +1,47 @@
|
|||||||
|
from micropython import const # NOQA
|
||||||
|
|
||||||
|
_WIDTH = const(480)
|
||||||
|
_HEIGHT = const(320)
|
||||||
|
|
||||||
|
_BUFFER_SIZE = _WIDTH * _HEIGHT * 3
|
||||||
|
|
||||||
|
import lcd_bus # NOQA
|
||||||
|
|
||||||
|
bus = lcd_bus.SDLBus(flags=0)
|
||||||
|
|
||||||
|
buf1 = bus.allocate_framebuffer(_BUFFER_SIZE, 0)
|
||||||
|
buf2 = bus.allocate_framebuffer(_BUFFER_SIZE, 0)
|
||||||
|
|
||||||
|
import lvgl as lv # NOQA
|
||||||
|
import sdl_display # NOQA
|
||||||
|
|
||||||
|
lv.init()
|
||||||
|
|
||||||
|
display = sdl_display.SDLDisplay(
|
||||||
|
data_bus=bus,
|
||||||
|
display_width=_WIDTH,
|
||||||
|
display_height=_HEIGHT,
|
||||||
|
frame_buffer1=buf1,
|
||||||
|
frame_buffer2=buf2,
|
||||||
|
color_space=lv.COLOR_FORMAT.RGB888,
|
||||||
|
)
|
||||||
|
|
||||||
|
display.init()
|
||||||
|
|
||||||
|
import sdl_pointer
|
||||||
|
|
||||||
|
mouse = sdl_pointer.SDLPointer()
|
||||||
|
|
||||||
|
scrn = lv.screen_active()
|
||||||
|
scrn.set_style_bg_color(lv.color_hex(0x000000), 0)
|
||||||
|
|
||||||
|
slider = lv.slider(scrn)
|
||||||
|
slider.set_size(300, 25)
|
||||||
|
slider.center()
|
||||||
|
|
||||||
|
|
||||||
|
import task_handler
|
||||||
|
|
||||||
|
# the duration needs to be set to 5 to have a good response from the mouse.
|
||||||
|
# There is a thread that runs that facilitates double buffering.
|
||||||
|
th = task_handler.TaskHandler(duration=5)
|
@ -0,0 +1,57 @@
|
|||||||
|
import lvgl as lv
|
||||||
|
import lcd_bus
|
||||||
|
|
||||||
|
import ili9341
|
||||||
|
from machine import SPI
|
||||||
|
|
||||||
|
spi_bus = SPI.Bus(host=1, mosi=14, miso=41, sck=13)
|
||||||
|
|
||||||
|
display_bus = lcd_bus.SPIBus(
|
||||||
|
spi_bus=spi_bus,
|
||||||
|
dc=4,
|
||||||
|
cs=6,
|
||||||
|
freq=40000000,
|
||||||
|
)
|
||||||
|
|
||||||
|
display = ili9341.ILI9341(
|
||||||
|
data_bus=display_bus,
|
||||||
|
display_width=240,
|
||||||
|
display_height=320,
|
||||||
|
reset_pin=5,
|
||||||
|
# comment the next line if you still don't get something on the display
|
||||||
|
reset_state=ili9341.STATE_LOW,
|
||||||
|
backlight_pin=40, # NOT USED...YET
|
||||||
|
color_space=lv.COLOR_FORMAT.RGB565,
|
||||||
|
color_byte_order=ili9341.BYTE_ORDER_BGR,
|
||||||
|
rgb565_byte_swap=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
display.set_power(True)
|
||||||
|
display.init()
|
||||||
|
display.set_rotation(lv.DISPLAY_ROTATION._90)
|
||||||
|
|
||||||
|
# setting this to anything but 100 or 0 when you don't have the
|
||||||
|
# backlight state set to PWM isn't going to do anything
|
||||||
|
display.set_backlight(100)
|
||||||
|
|
||||||
|
display.invert_colors()
|
||||||
|
|
||||||
|
scrn = lv.screen_active()
|
||||||
|
scrn.set_style_bg_color(lv.color_hex(0xFFB6C1), 0)
|
||||||
|
|
||||||
|
slider = lv.slider(scrn)
|
||||||
|
slider.set_size(300, 50)
|
||||||
|
slider.center()
|
||||||
|
|
||||||
|
label = lv.label(scrn)
|
||||||
|
label.set_text("HELLO WORLD!")
|
||||||
|
label.align(lv.ALIGN.CENTER, 0, -50)
|
||||||
|
|
||||||
|
import task_handler
|
||||||
|
|
||||||
|
th = task_handler.TaskHandler()
|
||||||
|
|
||||||
|
|
||||||
|
main()
|
Loading…
Reference in New Issue