merge rusEFI wiki

This commit is contained in:
GitHub Action 2022-07-28 13:07:33 +00:00
commit 560a10472a
1 changed files with 3 additions and 3 deletions

View File

@ -404,11 +404,11 @@ end
# set sensor value
```lua
vssSensor = Sensor.new("VSS")
vssSensor = Sensor.new("VehicleSpeed")
function onTick()
vssSensor : set(90)
val = getSensor("VSS")
print ("VSS " ..getSensor("VSS"))
val = getSensor("VehicleSpeed")
print ("VSS " .. val)
end