2018-09-12 21:12:19 -07:00
|
|
|
# Light Level Meter
|
2017-02-09 17:40:21 -08:00
|
|
|
|
2018-09-12 13:26:39 -07:00
|
|
|
Use this program to graph the light level.
|
2017-06-21 11:17:25 -07:00
|
|
|
Press ``A`` to scroll the value on the screen.
|
|
|
|
|
2017-02-09 17:40:21 -08:00
|
|
|
```blocks
|
2017-06-21 11:17:25 -07:00
|
|
|
let reading = 0
|
2017-02-09 17:40:21 -08:00
|
|
|
basic.forever(() => {
|
2018-09-12 13:26:39 -07:00
|
|
|
reading = input.lightLevel()
|
2017-02-09 17:40:21 -08:00
|
|
|
led.plotBarGraph(
|
2017-06-21 11:17:25 -07:00
|
|
|
reading,
|
2018-09-12 13:26:39 -07:00
|
|
|
255
|
2017-02-09 17:40:21 -08:00
|
|
|
)
|
2017-06-21 11:17:25 -07:00
|
|
|
if (input.buttonIsPressed(Button.A)) {
|
|
|
|
basic.showNumber(reading)
|
|
|
|
}
|
2017-02-09 17:40:21 -08:00
|
|
|
})
|
|
|
|
```
|