pxt-calliope/docs/reference/pins/analog-pitch.md

34 lines
797 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Analog Pitch
Emits a Pulse With Modulation (PWM) signal to the pin ``P0``.
Use [analog set pitch pin](/reference/pins/analog-set-pitch-pin) to set the current pitch pin.
2016-03-26 00:47:20 +01:00
```sig
pins.analogPitch(440, 300)
```
## Parameters
2016-03-26 00:47:20 +01:00
* `frequency` : [Number](/types/number)
* `ms`: [Number](/types/number)
2016-03-26 00:47:20 +01:00
## Example
2016-03-26 00:47:20 +01:00
```blocks
pins.analogSetPitchPin(AnalogPin.P0);
2016-03-26 00:47:20 +01:00
let frequency1 = 440
let duration = 1000
pins.analogSetPitchPin(AnalogPin.P1);
2016-03-26 00:47:20 +01:00
pins.analogPitch(frequency1, duration)
```
## Some common notes
2016-03-26 00:47:20 +01:00
* 440 = A4 on piano
* see [piano key frequencies ](https://en.wikipedia.org/wiki/Piano_key_frequencies) for more information
## See also
2016-03-26 00:47:20 +01:00
2016-11-02 01:44:37 +01:00
[@boardname@ pins](/device/pins), [analog set period](/reference/pins/analog-set-period), [analog set pitch pin](/reference/pins/analog-set-pitch-pin)
2016-03-26 00:47:20 +01:00