pxt-ev3/sim/state/light.ts

19 lines
385 B
TypeScript
Raw Permalink Normal View History

2017-07-11 10:15:17 +02:00
namespace pxsim {
export class EV3LightState {
lightPattern: number;
constructor() {
this.lightPattern = 0;
}
}
}
namespace pxsim.output {
export function setLights(pattern: number) {
2017-07-11 10:15:17 +02:00
const lightState = (board() as DalBoard).lightState;
lightState.lightPattern = pattern;
runtime.queueDisplayUpdate();
}
}