pxt-ev3/docs/reference/control/assert.md

12 lines
210 B
Markdown
Raw Normal View History

# @extends
## Example #example
Stop the program if the gyro dectects an angle greater than 45 degrees.
```blocks
forever(function () {
control.assert(sensors.gyro2.angle() > 45, 15)
pause(300)
})
```