This commit is contained in:
Tom Ball
2016-06-14 17:21:02 -04:00
8 changed files with 134 additions and 16 deletions

View File

@ -29,7 +29,7 @@ the magnetic force is stronger, and dimmer when it is weaker.
```blocks
led.plot(2, 2)
basic.forever(() => {
let f = input.magneticForce("x")
let f = input.magneticForce(Dimension.X)
led.setBrightness(f / 2000)
})
```