pxt-calliope/docs/projects/analog-pin-tester.md
Galen Nickel eae6e5a6be
Edit 'tools' projects (#1220)
* Edit 'tools' projects

* Rename projects and fix linking
2018-09-12 21:12:19 -07:00

19 lines
387 B
Markdown

# Analog Pin Tester
Use this program to graph the analog values that are read from pin ``P0``.
Press ``A`` to scroll the value on the screen.
```blocks
let reading = 0
basic.forever(() => {
reading = pins.analogReadPin(AnalogPin.P0)
led.plotBarGraph(
reading,
1023
)
if (input.buttonIsPressed(Button.A)) {
basic.showNumber(reading)
}
})
```