19 lines
389 B
TypeScript
19 lines
389 B
TypeScript
namespace pxsim {
|
|
|
|
export class EV3LightState {
|
|
lightPattern: number;
|
|
|
|
constructor() {
|
|
this.lightPattern = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace pxsim.output {
|
|
|
|
export function setLights(pattern: number) {
|
|
const lightState = ev3board().getBrickNode().lightState;
|
|
lightState.lightPattern = pattern;
|
|
runtime.queueDisplayUpdate();
|
|
}
|
|
} |