Create/wiki/Lua-Rotation-Speed-Controller.md

19 lines
768 B
Markdown
Raw Permalink Normal View History

2023-04-13 00:55:20 +02:00
| Method | Description |
|-------------------------------------------------|----------------------------------------|
| [`setTargetSpeed(speed)`](#setTargetSpeedspeed) | Sets the target rotation speed |
| [`getTargetSpeed()`](#getTargetSpeed) | Gets the current target rotation speed |
---
### `setTargetSpeed(speed)`
Sets the rotation speed controller's target speed.
**Parameters**
2023-04-13 00:55:20 +02:00
- _speed:_ `number` The target speed in RPM. Must be an integer within the range of [-256..256]. Values outside of this range will be clamped.
---
### `getTargetSpeed()`
Gets the rotation speed controller's current target speed.
**Returns**
2023-04-13 00:55:20 +02:00
- `number` The current target rotation speed in RPM.