From 7f2fd0dd09f4d06c6ccb769876a779ce7bbbe915 Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Mon, 10 Oct 2016 13:16:39 -0700 Subject: [PATCH] positioning systemled --- sim/visuals/microbit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/visuals/microbit.ts b/sim/visuals/microbit.ts index 94f9e05c..210699e2 100644 --- a/sim/visuals/microbit.ts +++ b/sim/visuals/microbit.ts @@ -478,7 +478,7 @@ namespace pxsim.visuals { private lastFlashTime: number = 0; public flashSystemLed() { if (!this.systemLed) - this.systemLed = svg.child(this.g, "circle", { class: "sim-systemled", cx: 300, cy: 20, r: 5 }) + this.systemLed = svg.child(this.g, "circle", { class: "sim-systemled", cx: 95, cy: 73, r: 5 }) let now = Date.now(); if (now - this.lastFlashTime > 150) { this.lastFlashTime = now;