mirror of
https://github.com/clockworkpi/launcher.git
synced 2026-03-28 06:42:57 +01:00
Add files via upload
This commit is contained in:
29
Menu/GameShell/10_Settings/Wifi/__init__.py
Normal file
29
Menu/GameShell/10_Settings/Wifi/__init__.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
## local UI import
|
||||
import pages
|
||||
import myvars
|
||||
"""
|
||||
try:
|
||||
from icons import preload
|
||||
except:
|
||||
print("No icons package")
|
||||
"""
|
||||
from icons import preload
|
||||
|
||||
def Init(main_screen):
|
||||
|
||||
preload.load_icons()
|
||||
pages.InitPasswordPage(main_screen)
|
||||
pages.InitScanPage(main_screen)
|
||||
|
||||
def API(main_screen):
|
||||
|
||||
if main_screen != None:
|
||||
main_screen.PushCurPage()
|
||||
main_screen.SetCurPage(myvars.ScanPage)
|
||||
main_screen.Draw()
|
||||
main_screen.SwapAndShow()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user