Delay user code by 100ms to get sensor reading (fixes #90)
This commit is contained in:
parent
41d5052583
commit
c7a3f5bbd0
@ -3,7 +3,8 @@
|
||||
"description": "The EV3 library",
|
||||
"files": [
|
||||
"README.md",
|
||||
"ns.ts"
|
||||
"ns.ts",
|
||||
"startup.ts"
|
||||
],
|
||||
"dependencies": {
|
||||
"base": "file:../base",
|
||||
|
4
libs/ev3/startup.ts
Normal file
4
libs/ev3/startup.ts
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user