56 lines
2.0 KiB
Lua
56 lines
2.0 KiB
Lua
|
|
--[[
|
|
Ultimate Lighting Controller Config
|
|
the ULC resource is required to use this configuration
|
|
get the resource here: https://github.com/Flohhhhh/ultimate-lighting-controller/releases/latest
|
|
To learn how to setup and use ULC visit here: https://docs.dwnstr.com/ulc/overview
|
|
]]
|
|
|
|
return {names = {"23gmcleo"},
|
|
steadyBurnConfig = {
|
|
forceOn = false, useTime = false,
|
|
disableWithLights = false,
|
|
sbExtras = {}
|
|
},
|
|
parkConfig = {
|
|
usePark = true,
|
|
useSync = true,
|
|
syncWith = {"615", "376", "gpd7", "640", "128", "704", "st23tahoe", "24sub", "24ramambo", "23sierrafire", "23gmcleoslick", "23gmcleo", "ccso1", "gpdchief1" },
|
|
pExtras = {10},
|
|
dExtras = {11}
|
|
},
|
|
hornConfig = {
|
|
useHorn = false,
|
|
hornExtras = {},
|
|
},
|
|
brakeConfig = {
|
|
useBrakes = false,
|
|
speedThreshold = 3,
|
|
brakeExtras = {},
|
|
disableExtras = {}
|
|
},
|
|
reverseConfig = {
|
|
useReverse = false,
|
|
reverseExtras = {}
|
|
},
|
|
doorConfig = {
|
|
useDoors = false,
|
|
driverSide = {enable = {}, disable = {}},
|
|
passSide = {enable = {}, disable = {}},
|
|
trunk = {enable ={}, disable = {}}
|
|
},
|
|
buttons = {
|
|
{label = "Stage 1", key = 1, color = "red", extra = 2, linkedExtras = {2}, oppositeExtras = {}, offExtras = {1}, repair = false},
|
|
{label = "Stage 2", key = 2, color = "red", extra = 1, linkedExtras = {1}, oppositeExtras = {}, offExtras = {2}, repair = false},
|
|
{label = "Cruise", key = 3, color = "red", extra = 3, linkedExtras = {3}, oppositeExtras = {}, offExtras = {2,1,4,5,6}, repair = false},
|
|
{label = "TKDN", key = 4, color = "red", extra = 4, linkedExtras = {4}, oppositeExtras = {}, offExtras = {3,2,1,5,6}, repair = false},
|
|
{label = "<-", key = 5, color = "amber", extra = 5, linkedExtras = {5}, oppositeExtras = {}, offExtras = {6}, repair = false},
|
|
{label = "->", key = 6, color = "amber", extra = 6, linkedExtras = {6}, oppositeExtras = {}, offExtras = {5}, repair = false}
|
|
|
|
},
|
|
defaultStages = {
|
|
useDefaults = false,
|
|
enableKeys = {},
|
|
disableKeys = {}
|
|
}
|
|
} |