pxt-calliope/docs/reference/pins/digital-read-pin.md

41 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Digital Read Pin
2016-04-02 01:22:47 +02:00
The digital read pin function.
2016-03-26 00:47:20 +01:00
2016-04-13 17:27:45 +02:00
Digitally read the specified [pin](/device/pins) (``P0``, ``P1``, ``P2``, ...) as digital. **Some pins are also used by the display, read the [pin documentation ](/device/pins) carefully.**
2016-03-26 00:47:20 +01:00
```sig
pins.digitalReadPin(DigitalPin.P3)
```
### Parameters
* name - the pin name ``P0``, ``P1``, ``P2``, ...
### Returns
2016-04-13 17:27:45 +02:00
* [Number](/reference/types/number) - 0 or 1
2016-03-26 00:47:20 +01:00
### Example: football score keeper
The following example reads `P0` to determine when a goal is scored. When `P0 = 1`, the code uses `digital write pin` to play a buzzer sound:
```blocks
let score = 0
basic.showNumber(score)
basic.forever(() => {
if (pins.digitalReadPin(DigitalPin.P0) == 1) {
score++;
pins.digitalWritePin(DigitalPin.P2, 1)
basic.showNumber(score)
basic.pause(1000)
pins.digitalWritePin(DigitalPin.P2, 0)
}
})
```
### See also
2016-04-13 17:27:45 +02:00
[micro:bit pins](/device/pins), [digital write pin](/reference/pins/digital-write-pin), [analog read pin](/reference/pins/analog-read-pin), [analog write pin](/reference/pins/analog-write-pin), [on pin pressed](/reference/input/on-pin-pressed), [pin is pressed](/reference/input/pin-is-pressed)
2016-03-26 00:47:20 +01:00