pxt-calliope/sim/state/rgbled.ts

6 lines
146 B
TypeScript
Raw Normal View History

2016-09-27 13:35:48 -07:00
namespace pxsim.basic {
export function setLedColor(c: number) {
board().rgbLedState = c;
2016-10-11 11:41:51 -07:00
runtime.queueDisplayUpdate()
2016-09-27 13:35:48 -07:00
}
}