You measure acceleration with the milli-g, which is 1/1000 of a g. A g is as much acceleration as you get from Earth’s gravity.
Get the acceleration value (milli g-force), in one of three specified dimensions.
Find the acceleration of the Calliope mini (how fast it is speeding up or slowing down).
input.acceleration(Dimension.X);
dimension
means which direction you are checking for acceleration, either Dimension.X
(left and right), Dimension.Y
(forward and backward), or Dimension.Z
(up and down)x
is 0
, y
is 0
, and z
is -1023
.This example shows the acceleration of the Calliope mini with a bar graph.
basic.forever(() => {
led.plotBarGraph(input.acceleration(Dimension.X), 1023)
})