pxt-ev3/libs/core/test.ts

60 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-07-05 14:56:13 +02:00
screen.clear()
2017-07-11 15:52:37 +02:00
screen.drawText(10, 30, "PXT!", Draw.Quad)
2017-06-29 16:47:26 +02:00
2017-07-11 14:43:12 +02:00
screen.drawRect(40, 40, 20, 10, Draw.Fill)
2017-07-05 20:17:26 +02:00
output.setLights(LightsPattern.Orange)
2017-07-11 15:25:14 +02:00
screen.drawIcon(100, 50, screen.doubleIcon(screen.heart), Draw.Double|Draw.Transparent)
2017-07-11 14:43:12 +02:00
2017-07-05 20:17:26 +02:00
input.buttonEnter.onEvent(ButtonEvent.Click, () => {
screen.clear()
})
input.buttonLeft.onEvent(ButtonEvent.Click, () => {
screen.drawRect(10, 70, 20, 10, Draw.Fill)
2017-07-11 14:43:12 +02:00
output.setLights(LightsPattern.Red)
2017-07-11 15:40:27 +02:00
screen.setFont(screen.microbitFont())
2017-07-05 20:17:26 +02:00
})
input.buttonRight.onEvent(ButtonEvent.Click, () => {
2017-07-11 14:43:12 +02:00
screen.drawText(10, 60, "Right!")
2017-07-05 20:17:26 +02:00
})
2017-07-05 14:56:13 +02:00
input.buttonDown.onEvent(ButtonEvent.Click, () => {
2017-07-11 14:43:12 +02:00
screen.drawText(10, 60, "Down! ")
2017-07-05 14:56:13 +02:00
})
input.buttonUp.onEvent(ButtonEvent.Click, () => {
2017-07-11 14:43:12 +02:00
screen.drawText(10, 60, "Up! ")
2017-07-05 14:56:13 +02:00
})
2017-07-02 13:32:17 +02:00
2017-07-10 13:47:00 +02:00
let num = 0
2017-07-10 15:26:19 +02:00
input.touchSensor.onEvent(ButtonEvent.Click, () => {
2017-07-10 13:47:00 +02:00
screen.drawText(10, 60, "Click! " + num)
num++
})
2017-07-10 15:26:19 +02:00
input.remoteTopLeft.onEvent(ButtonEvent.Click, () => {
2017-07-10 13:47:00 +02:00
screen.drawText(10, 60, "TOPLEFT " + num)
num++
})
2017-07-10 15:26:19 +02:00
input.remoteTopRight.onEvent(ButtonEvent.Down, () => {
2017-07-10 13:47:00 +02:00
screen.drawText(10, 60, "TOPRIGH " + num)
num++
})
loops.forever(() => {
serial.writeDmesg()
2017-07-10 15:43:54 +02:00
loops.pause(100)
2017-07-10 13:47:00 +02:00
})
2017-07-10 15:43:54 +02:00
/*
loops.forever(() => {
let v = input.color.getColor()
screen.drawText(10, 60, v + " ")
loops.pause(200)
})
*/