37404acbcc
* remove disable tilt option * allow tilting when breadboard is up (music speakers) * display acceleration * only showing acc values if read
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
namespace pxsim.visuals {
|
|
mkBoardView = (opts: BoardViewOptions): BoardView => {
|
|
return new visuals.MicrobitBoardSvg({
|
|
runtime: runtime,
|
|
theme: visuals.randomTheme(opts.highContrast),
|
|
wireframe: opts.wireframe
|
|
});
|
|
}
|
|
} |