11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
namespace pxsim.motors {
|
|
export function motorPower(power: number) {
|
|
// TODO
|
|
}
|
|
export function motorCommand(command: MotorCommand) {
|
|
|
|
}
|
|
export function dualMotorPower(motor: Motor, percent: number) {
|
|
}
|
|
}
|