pxt-ev3/libs/core/test.ts
Michal Moskal 0cc3cfee4b IR works
2017-07-10 12:47:00 +01:00

53 lines
1.1 KiB
TypeScript

screen.clear()
screen.setFont(ScreenFont.Large)
screen.drawText(10, 30, "Welcome PXT!")
screen.drawEllipse(40, 40, 20, 10, Draw.Fill)
output.setLights(LightsPattern.Orange)
input.buttonEnter.onEvent(ButtonEvent.Click, () => {
screen.clear()
})
input.buttonLeft.onEvent(ButtonEvent.Click, () => {
screen.drawRect(10, 70, 20, 10, Draw.Fill)
})
input.buttonRight.onEvent(ButtonEvent.Click, () => {
screen.setFont(ScreenFont.Normal)
screen.drawText(10, 60, "Bang!")
})
input.buttonDown.onEvent(ButtonEvent.Click, () => {
screen.scroll(-10)
})
input.buttonUp.onEvent(ButtonEvent.Click, () => {
screen.scroll(10)
})
let num = 0
input.touch.button.onEvent(ButtonEvent.Click, () => {
screen.drawText(10, 60, "Click! " + num)
num++
})
input.ir.getRemoteCommand()
input.ir.button(IrRemoteButton.TopLeft).onEvent(ButtonEvent.Down, () => {
screen.drawText(10, 60, "TOPLEFT " + num)
num++
})
input.ir.button(IrRemoteButton.TopRight).onEvent(ButtonEvent.Down, () => {
screen.drawText(10, 60, "TOPRIGH " + num)
num++
})
loops.forever(() => {
serial.writeDmesg()
loops.pause(400)
})