mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-04-07 22:04:02 +08:00
version: sunnypilot v2026.001.000 (dev)
date: 2026-04-06T01:24:35
master commit: 8fec761f89
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_reset as tici_reset
|
|
import openpilot.system.ui.mici_reset as mici_reset
|
|
|
|
|
|
def main():
|
|
if gui_app.big_ui():
|
|
tici_reset.main()
|
|
else:
|
|
mici_reset.main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|