diff --git a/libs/ev3/pxt.json b/libs/ev3/pxt.json index 61752d25..5a3c7634 100644 --- a/libs/ev3/pxt.json +++ b/libs/ev3/pxt.json @@ -3,7 +3,8 @@ "description": "The EV3 library", "files": [ "README.md", - "ns.ts" + "ns.ts", + "startup.ts" ], "dependencies": { "base": "file:../base", diff --git a/libs/ev3/startup.ts b/libs/ev3/startup.ts new file mode 100644 index 00000000..3dcce976 --- /dev/null +++ b/libs/ev3/startup.ts @@ -0,0 +1,4 @@ +// 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 +loops.pause(100)