Toggle Navigation
Hatchery
Eggs
comic
comic.py
Users
Badges
Login
Register
MCH2022 badge?
go to mch2022.badge.team
comic.py
raw
Content
import ugfx import json import sys ugfx.init() with open('%s/comic/ComicNeue_Bold48.json' % sys.path[1], 'r') as f: ugfx.fonts_load(json.loads(f.read())) ugfx.clear(ugfx.BLACK) ugfx.string(5,25,"Hackers","ComicNeue_Bold48",ugfx.WHITE) ugfx.string(140,55,"Gonna","ComicNeue_Bold48",ugfx.WHITE) ugfx.string(15,75,"Hack","ComicNeue_Bold48",ugfx.WHITE) ugfx.flush() import time time.sleep(0.7) import deepsleep deepsleep.start_sleeping(60000)