54 lines
712 B
Python
54 lines
712 B
Python
try:
|
|
from dragonpilot.system.ui.lib.multilang import tr
|
|
except:
|
|
from openpilot.system.ui.lib.multilang import tr
|
|
|
|
SETTINGS = [
|
|
{
|
|
"title": "Toyota / Lexus",
|
|
"condition": "brand == 'toyota'",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"title": "VAG",
|
|
"condition": "brand == 'volkswagen'",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"title": "Mazda",
|
|
"condition": "brand == 'mazda'",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"title": "Lateral",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"title": "Longitudinal",
|
|
"condition": "openpilotLongitudinalControl",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"title": "UI",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
{
|
|
"title": "Device",
|
|
"settings": [
|
|
|
|
],
|
|
},
|
|
]
|