acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

lv_example_rlottie_1.py (282B)

      1 #!/opt/bin/lv_micropython -i
      2 import lvgl as lv
      3 import display_driver
      4 #
      5 # Load a lottie animation from flash
      6 #
      7 from lv_example_rlottie_approve import lv_example_rlottie_approve
      8 
      9 lottie = lv.rlottie_create_from_raw(lv.scr_act(), 100, 100, lv_example_rlottie_approve)
     10 lottie.center()
     11