mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
c4f322ce2d
remove pylint old-commit-hash: 1ee6ed4b16e2ade0dd887c0687243aee769043e5
15 lines
301 B
Python
Executable File
15 lines
301 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from PyQt5.QtWidgets import QApplication, QLabel
|
|
from openpilot.selfdrive.ui.qt.python_helpers import set_main_window
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication([])
|
|
label = QLabel('Hello World!')
|
|
|
|
# Set full screen and rotate
|
|
set_main_window(label)
|
|
|
|
app.exec_()
|