2016-03-26 00:47:20 +01:00
|
|
|
# Analog Write Pin
|
|
|
|
|
2016-04-13 17:27:45 +02:00
|
|
|
Write to the specified [pin](/device/pins) (P0, P1, P2) as analog.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
```sig
|
|
|
|
pins.analogWritePin(AnalogPin.P0, 400)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
2016-04-13 17:27:45 +02:00
|
|
|
* `name` - [String](/reference/types/string); the pin name ("P0", "P1", or "P2")
|
|
|
|
* `value` - a [Number](/reference/types/number) between 0 and 1023 included
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
The following code writes `1023` to the `P0` pin:
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
pins.analogWritePin(AnalogPin.P0, 1023)
|
|
|
|
```
|
|
|
|
|
|
|
|
### See also
|
|
|
|
|
2016-04-13 17:27:45 +02:00
|
|
|
[micro:bit pins](/device/pins), [on pin pressed](/reference/input/on-pin-pressed), [analog read pin](/reference/pins/analog-read-pin), [digital read pin](/reference/pins/digital-read-pin), [digital write pin](/reference/pins/digital-write-pin)
|
2016-03-26 00:47:20 +01:00
|
|
|
|