Data and Change Events

When using sensors, it's more common to keep checking for changes all the time instead of only checking when someone clicks a button. There are special events for this that keep running.

The Data Event

data event

The "data" event happens every time your program gets information from the board. This happens all the time while your program is working. When you set up an onBoardEvent() handler for the "data" event, your code will run every 50 milliseconds.

Remember, even though the "data" event is connected to a specific sensor, you can check for new information from many sensors in the event handler.

The Change Event

change event

Like the "data" event, the "change" event keeps happening, letting you get information from sensors all the time. But, the "change" event only happens if the sensor value changes enough. Each sensor has a default amount of change needed to trigger a "change" event (usually, the amount is 1).

The "change" event is useful because it only reacts to new input and doesn't waste time repeating the same input. This means you'll probably want a separate "change" event

Found a bug in the documentation? Let us know at support@code.org.

Creative Commons License (CC BY-NC-SA 4.0).

This work is available under a Creative Commons License (CC BY-NC-SA 4.0).

If you are interested in licensing Code.org materials for commercial purposes contact us.