Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 701 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 701 Bytes

Kitronik blocks for micro:bit

Blocks that support Kitronik Servo:Lite board for the micro:bit

ServoLite

  • turn around
input.onButtonPressed(Button.A, () => {
    kitronik.turnRight(90);
})
  • go forward
input.onButtonPressed(Button.B, () => {
    kitronik.driveForwards(10);
})
  • stop both motors when pressing A+B
input.onButtonPressed(Button.AB, () => {
    kitronik.stop();
})

License

MIT

Supported targets

  • for PXT/microbit (The metadata above is needed for package search.)
pxt-kitronik-servo-lite=github:KitronikLtd/pxt-kitronik-servo-lite