2016-03-25 16:47:20 -07:00
|
|
|
# Analog Pitch
|
|
|
|
|
2016-11-29 08:59:54 -08:00
|
|
|
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-25 16:47:20 -07:00
|
|
|
|
|
|
|
```sig
|
|
|
|
pins.analogPitch(440, 300)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
2017-03-16 07:57:41 -07:00
|
|
|
* `frequency` : [Number](/types/number)
|
|
|
|
* `ms`: [Number](/types/number)
|
2016-03-25 16:47:20 -07:00
|
|
|
|
|
|
|
### Example
|
|
|
|
|
2016-08-09 16:52:24 +01:00
|
|
|
```blocks
|
2016-03-25 16:47:20 -07:00
|
|
|
pins.analogSetPitchPin("P0")
|
|
|
|
let frequency1 = 440
|
|
|
|
let duration = 1000
|
2016-11-29 08:59:54 -08:00
|
|
|
pins.analogSetPitchPin(AnalogPin.P1);
|
2016-03-25 16:47:20 -07:00
|
|
|
pins.analogPitch(frequency1, duration)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Some common notes
|
|
|
|
|
|
|
|
* 440 = A4 on piano
|
|
|
|
* see [piano key frequencies ](https://en.wikipedia.org/wiki/Piano_key_frequencies) for more information
|
|
|
|
|
|
|
|
### See also
|
|
|
|
|
2016-11-01 17:44:37 -07: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-25 16:47:20 -07:00
|
|
|
|