Files
StarPilot/scripts/pyqt_demo.py
T
firestar5683 14bead366a Revert "Compile FrogPilot"
This reverts commit 255c89c6ab.
2025-09-29 10:33:41 -05:00

15 lines
301 B
Python

#!/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_()