52 lines
1.7 KiB
Lua
52 lines
1.7 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 = {"psp16fpiu"},
|
|
steadyBurnConfig = {
|
|
forceOn = false, useTime = false,
|
|
disableWithLights = false,
|
|
sbExtras = {}
|
|
},
|
|
parkConfig = {
|
|
usePark = false,
|
|
useSync = false,
|
|
syncWith = {},
|
|
pExtras = {},
|
|
dExtras = {}
|
|
},
|
|
hornConfig = {
|
|
useHorn = false,
|
|
hornExtras = {},
|
|
},
|
|
brakeConfig = {
|
|
useBrakes = false,
|
|
speedThreshold = 3,
|
|
brakeExtras = {}
|
|
},
|
|
reverseConfig = {
|
|
useReverse = false,
|
|
reverseExtras = {}
|
|
},
|
|
doorConfig = {
|
|
useDoors = true,
|
|
driverSide = {enable = {}, disable = {6}},
|
|
passSide = {enable = {}, disable = {6}},
|
|
trunk = {enable ={}, disable = {}}
|
|
},
|
|
buttons = {
|
|
{label = "STAGE 2", key = 1, color = "red", extra = 4, linkedExtras = {4}, oppositeExtras = {}, offExtras = {}, repair = false},
|
|
{label = "TKD", key = 4, color = "red", extra = 6, linkedExtras = {}, oppositeExtras = {}, offExtras = {}, repair = false},
|
|
{label = "ALLEY LEFT", key = 2, color = "red", extra = 8, linkedExtras = {}, oppositeExtras = {}, offExtras = {}, repair = false},
|
|
{label = "ALLEY RIGHT", key = 3, color = "red", extra = 7, linkedExtras = {}, oppositeExtras = {}, offExtras = {}, repair = false}
|
|
},
|
|
defaultStages = {
|
|
useDefaults = false,
|
|
enableKeys = {},
|
|
disableKeys = {}
|
|
}
|
|
} |