pxt-calliope/docs/reference/pins/servo-set-pulse.md
2016-06-30 12:43:42 -07:00

807 B

Servo Set Pulse

Configure the specified pin as analog output, set the period to 20 ms, and set the pulse width to the specified value.

pins.servoSetPulse(AnalogPin.P1, 1500)

Parameters

  • pin: a string that specifies the pin to configure (P0 through P4, or P10)
  • μs: a number that specifies the analog period in microseconds.

Example

The following code sets the servo pulse to 1000 microseconds.

pins.servoSetPulse(AnalogPin.P0, 1000)

See also

BBC micro:bit pins, on pin pressed, analog read pin, digital read pin, digital write pin