merge rusEFI wiki

This commit is contained in:
GitHub Action 2022-07-14 11:39:11 +00:00
commit 95bcc44ddf
1 changed files with 9 additions and 0 deletions

View File

@ -153,6 +153,9 @@ Sets the rate at which rusEFI calls your `onTick` and `onCanRx` functions, in hz
Stops MCU.
### `findTableIndex(name)`
Find table index by specified human-readable name.
### `table3d(tableIdx, x, y)`
Looks up a value from the specified Script Table.
@ -164,6 +167,9 @@ Looks up a value from the specified Script Table.
- Returns
- A number representing the value looked up from the table.
### `findCurveIndex(name)`
Finds curve index by specific curve name
### `curve(curveIdx, x)`
Looks up a value from the specified Script Curve.
@ -419,6 +425,9 @@ tps = getSensor("Tps1")
dutyCycle = table3d(tableIndex, TurbochargerSpeed, tps)
sparkCutCurve = findCurveIndex("sparkcut")
sparkCutByTorque = curve(sparkCutCurve, torque)
```