mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-08 14:32:06 +08:00
100f89a161
* openpilot v0.9.9 release date: 2025-06-05T19:54:08 master commit: 8aadf02b2fd91f4e1285e18c2c7feb32d93b66f5 * AGNOS 12.4 (#35558) agnos12.4 --------- Co-authored-by: Vehicle Researcher <user@comma.ai> Co-authored-by: Maxime Desroches <desroches.maxime@gmail.com>
48 lines
1.9 KiB
Python
48 lines
1.9 KiB
Python
from openpilot.system.ui.lib.list_view import ListView, text_item, button_item
|
|
from openpilot.common.params import Params
|
|
from openpilot.system.hardware import TICI
|
|
|
|
# Description constants
|
|
DESCRIPTIONS = {
|
|
'pair_device': "Pair your device with comma connect (connect.comma.ai) and claim your comma prime offer.",
|
|
'driver_camera': "Preview the driver facing camera to ensure that driver monitoring has good visibility. (vehicle must be off)",
|
|
'reset_calibration': (
|
|
"openpilot requires the device to be mounted within 4° left or right and within 5° " +
|
|
"up or 9° down. openpilot is continuously calibrating, resetting is rarely required."
|
|
),
|
|
'review_guide': "Review the rules, features, and limitations of openpilot",
|
|
}
|
|
|
|
|
|
class DeviceLayout:
|
|
def __init__(self):
|
|
params = Params()
|
|
dongle_id = params.get("DongleId", encoding="utf-8") or "N/A"
|
|
serial = params.get("HardwareSerial") or "N/A"
|
|
|
|
items = [
|
|
text_item("Dongle ID", dongle_id),
|
|
text_item("Serial", serial),
|
|
button_item("Pair Device", "PAIR", DESCRIPTIONS['pair_device'], self._on_pair_device),
|
|
button_item("Driver Camera", "PREVIEW", DESCRIPTIONS['driver_camera'], self._on_driver_camera),
|
|
button_item("Reset Calibration", "RESET", DESCRIPTIONS['reset_calibration'], self._on_reset_calibration),
|
|
button_item("Review Training Guide", "REVIEW", DESCRIPTIONS['review_guide'], self._on_review_training_guide),
|
|
]
|
|
|
|
if TICI:
|
|
items.append(button_item("Regulatory", "VIEW", callback=self._on_regulatory))
|
|
|
|
items.append(button_item("Change Language", "CHANGE", callback=self._on_change_language))
|
|
|
|
self._list_widget = ListView(items)
|
|
|
|
def render(self, rect):
|
|
self._list_widget.render(rect)
|
|
|
|
def _on_pair_device(self): pass
|
|
def _on_driver_camera(self): pass
|
|
def _on_reset_calibration(self): pass
|
|
def _on_review_training_guide(self): pass
|
|
def _on_regulatory(self): pass
|
|
def _on_change_language(self): pass
|