mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-03 22:53:44 +08:00
11 lines
251 B
Python
11 lines
251 B
Python
"""Mici CameraView using upstream's engaged color treatment."""
|
|
|
|
from openpilot.selfdrive.ui.onroad.cameraview import CameraView as SharedCameraView
|
|
|
|
|
|
class CameraView(SharedCameraView):
|
|
_use_upstream_engaged_color = True
|
|
|
|
|
|
__all__ = ["CameraView"]
|