pxt-ev3/libs/ev3/startup.ts

7 lines
210 B
TypeScript
Raw Normal View History

// This is the last thing executed before user code
console.addListener(function(priority: ConsolePriority, msg: string) {
control.dmesg(msg.substr(0, msg.length - 1))
})
2019-10-19 07:03:50 +02:00
// boot sequence
brick.showBoot();