CEC-5931 - Remove nonexistent remote commands

This commit is contained in:
padamsen_fisker
2024-04-04 16:01:59 -04:00
parent 5f3fce37bc
commit b0eef61f17
4 changed files with 121 additions and 172 deletions

View File

@@ -1,14 +1,12 @@
const Commands = [
{value: "doors_lock", label: "Lock doors"},
{value: "doors_unlock", label: "Unlock doors"},
{value: "vent_windows", label: "Vent windows"},
{value: "close_windows", label: "Close windows"},
{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: "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",
@@ -16,11 +14,11 @@ const Commands = [
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"}]
{ 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;