mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-11 00:23:43 +08:00
5c37fd3ced
version: sunnypilot v2026.003.000 (feature-branch)
date: 2026-09-01T19:58:46
master commit: 89bc4ce00d
16 lines
310 B
Python
Executable File
16 lines
310 B
Python
Executable File
#!/usr/bin/env python3
|
|
from openpilot.system.ui.lib.application import gui_app
|
|
import openpilot.system.ui.tici_setup as tici_setup
|
|
import openpilot.system.ui.mici_setup as mici_setup
|
|
|
|
|
|
def main():
|
|
if gui_app.big_ui():
|
|
tici_setup.main()
|
|
else:
|
|
mici_setup.main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|