2018-09-13 06:12:19 +02:00
|
|
|
# Analog Pin Tester
|
2017-02-10 02:40:21 +01:00
|
|
|
|
2018-09-13 06:12:19 +02:00
|
|
|
Use this program to graph the analog values that are read from pin ``P0``.
|
2017-06-21 20:17:25 +02:00
|
|
|
Press ``A`` to scroll the value on the screen.
|
|
|
|
|
2017-02-10 02:40:21 +01:00
|
|
|
```blocks
|
2017-06-21 20:17:25 +02:00
|
|
|
let reading = 0
|
2017-02-10 02:40:21 +01:00
|
|
|
basic.forever(() => {
|
2017-06-21 20:17:25 +02:00
|
|
|
reading = pins.analogReadPin(AnalogPin.P0)
|
2017-02-10 02:40:21 +01:00
|
|
|
led.plotBarGraph(
|
2017-06-21 20:17:25 +02:00
|
|
|
reading,
|
2017-02-10 02:40:21 +01:00
|
|
|
1023
|
|
|
|
)
|
2017-06-21 20:17:25 +02:00
|
|
|
if (input.buttonIsPressed(Button.A)) {
|
|
|
|
basic.showNumber(reading)
|
|
|
|
}
|
2017-02-10 02:40:21 +01:00
|
|
|
})
|
|
|
|
```
|