pxt-calliope/docs/examples/plot-acceleration.md
2017-02-09 14:44:56 -08:00

11 lines
143 B
Markdown

## Plot Acceleration
```blocks
basic.forever(() => {
led.plotBarGraph(
input.acceleration(Dimension.X),
1023
)
})
```