Fixing test file
This commit is contained in:
parent
fa867c3a34
commit
5678cf5df9
@ -1,51 +1,36 @@
|
|||||||
screen.clear()
|
screen.clear()
|
||||||
screen.print("PXT!", 10, 30, Draw.Quad)
|
brick.print("PXT!", 10, 30, Draw.Quad)
|
||||||
|
|
||||||
screen.drawRect(40, 40, 20, 10, Draw.Fill)
|
brick.drawRect(40, 40, 20, 10, Draw.Fill)
|
||||||
motors.setStatusLight(LightsPattern.Orange)
|
brick.setStatusLight(LightsPattern.Orange)
|
||||||
|
|
||||||
screen.heart.doubled().draw(100, 50, Draw.Double | Draw.Transparent)
|
brick.heart.doubled().draw(100, 50, Draw.Double | Draw.Transparent)
|
||||||
|
|
||||||
sensors.buttonEnter.onEvent(ButtonEvent.Click, () => {
|
brick.buttonEnter.onEvent(ButtonEvent.Click, () => {
|
||||||
screen.clear()
|
screen.clear()
|
||||||
})
|
})
|
||||||
|
|
||||||
sensors.buttonLeft.onEvent(ButtonEvent.Click, () => {
|
brick.buttonLeft.onEvent(ButtonEvent.Click, () => {
|
||||||
screen.drawRect(10, 70, 20, 10, Draw.Fill)
|
brick.drawRect(10, 70, 20, 10, Draw.Fill)
|
||||||
motors.setStatusLight(LightsPattern.Red)
|
brick.setStatusLight(LightsPattern.Red)
|
||||||
screen.setFont(screen.microbitFont())
|
brick.setFont(brick.microbitFont())
|
||||||
})
|
})
|
||||||
|
|
||||||
sensors.buttonRight.onEvent(ButtonEvent.Click, () => {
|
brick.buttonRight.onEvent(ButtonEvent.Click, () => {
|
||||||
screen.print("Right!", 10, 60)
|
brick.print("Right!", 10, 60)
|
||||||
})
|
})
|
||||||
|
|
||||||
sensors.buttonDown.onEvent(ButtonEvent.Click, () => {
|
brick.buttonDown.onEvent(ButtonEvent.Click, () => {
|
||||||
screen.print("Down! ", 10, 60)
|
brick.print("Down! ", 10, 60)
|
||||||
})
|
})
|
||||||
|
|
||||||
sensors.buttonUp.onEvent(ButtonEvent.Click, () => {
|
brick.buttonUp.onEvent(ButtonEvent.Click, () => {
|
||||||
screen.print("Up! ", 10, 60)
|
brick.print("Up! ", 10, 60)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
let num = 0
|
let num = 0
|
||||||
|
|
||||||
sensors.touchSensor1.onEvent(TouchSensorEvent.Bumped, () => {
|
|
||||||
screen.print("Click! " + num, 10, 60)
|
|
||||||
num++
|
|
||||||
})
|
|
||||||
|
|
||||||
sensors.remoteButtonTopLeft.onEvent(ButtonEvent.Click, () => {
|
|
||||||
screen.print("TOPLEFT " + num, 10, 60)
|
|
||||||
num++
|
|
||||||
})
|
|
||||||
|
|
||||||
sensors.remoteButtonTopRight.onEvent(ButtonEvent.Down, () => {
|
|
||||||
screen.print("TOPRIGH " + num, 10, 60)
|
|
||||||
num++
|
|
||||||
})
|
|
||||||
|
|
||||||
loops.forever(() => {
|
loops.forever(() => {
|
||||||
serial.writeDmesg()
|
serial.writeDmesg()
|
||||||
loops.pause(100)
|
loops.pause(100)
|
||||||
|
Loading…
Reference in New Issue
Block a user