25 lines
924 B
JavaScript
25 lines
924 B
JavaScript
const Commands = [
|
|
{ value: "doors_lock", label: "Lock doors" },
|
|
{ value: "doors_unlock", label: "Unlock doors" },
|
|
{ value: "california_mode", label: "California mode" },
|
|
{ value: "trunk_open", label: "Open trunk" },
|
|
{ value: "trunk_close", label: "Close trunk " },
|
|
{ value: "flash_headlights", label: "Flash headlights" },
|
|
{ value: "alert", label: "Alert" },
|
|
{ value: "temp_cabin", label: "Set cabin temperature" },
|
|
{
|
|
value: "temp_cabin",
|
|
label: "Set cabin temperature for period",
|
|
params: {
|
|
data: ""
|
|
},
|
|
},
|
|
{ value: "defrost", label: "Defrost" },
|
|
{ value: "driver_seat_preheat", label: "Driver seat preheat" },
|
|
{ value: "passenger_seat_preheat", label: "Preheat passenger seat" },
|
|
{ value: "steering_wheel_preheat", label: "Preheat Steering wheel" },
|
|
{ value: "precondition", label: "Precondition" },
|
|
{ value: "charging", label: "Charging" }]
|
|
|
|
export default Commands;
|