pxt-calliope/docs/projects/servo-calibrator.md
Galen Nickel be617f6100
Insert kitronik servo guide link (#1923)
* Insert kitronik servo guide link

* Del leading space
2019-03-15 13:47:47 -07:00

717 B

Servo Calibrator

Use this program to calibrate the angles of a servo. Press A to reduce the angle by 5 and B to increase it by 5.

The current angle is displayed on the screen in a loop.

let angle = 90
input.onButtonPressed(Button.A, () => {
    angle = Math.max(0, angle - 5)
    pins.servoWritePin(AnalogPin.P0, angle)
    led.stopAnimation()
})
input.onButtonPressed(Button.B, () => {
    angle = Math.min(180, angle + 5)
    pins.servoWritePin(AnalogPin.P0, angle)
    led.stopAnimation()
})
basic.forever(() => {
    basic.showNumber(angle)    
})
pins.servoWritePin(AnalogPin.P0, angle)

See also

Brief Guide to Servos