From 97215e894a4de946809997ef227188a4d02a5a6a Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Wed, 20 Jun 2018 15:21:09 -0700 Subject: [PATCH] do a single green pulse when starting --- libs/ev3/startup.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libs/ev3/startup.ts b/libs/ev3/startup.ts index 59076fc2..beb5387a 100644 --- a/libs/ev3/startup.ts +++ b/libs/ev3/startup.ts @@ -1,9 +1,8 @@ // This is the last thing executed before user code -// We pause for 100ms to give time to read sensor values, so they work in on_start block -pause(100) - // pulse green, play startup sound, turn off light brick.setStatusLight(StatusLight.GreenPulse); -music.playSoundEffectUntilDone(sounds.systemStartUp); +// We pause for 100ms to give time to read sensor values, so they work in on_start block +pause(400) +// and we're ready brick.setStatusLight(StatusLight.Off);