Firefox Tomorrow

web api event

Sensor: reading event

View on MDN ↗

Secure context

The reading event is fired when a new reading is available on a sensor.

The Sensor interface is a base class, onreading and the reading event may only be used on one of the derived classes.

Syntax

Use the event name in methods like addEventListener(), or set an event handler property.

addEventListener("reading", (event) => { })

onreading = (event) => { }

Event type

A generic Event with no added properties.

Examples

Reading acceleration

This example adds an event listener to read acceleration values of an Accelerometer. It reads sixty times a second.

const acl = new Accelerometer({ frequency: 60 });
acl.addEventListener("reading", () => {
  console.log(`Acceleration along the X-axis ${acl.x}`);
  console.log(`Acceleration along the Y-axis ${acl.y}`);
  console.log(`Acceleration along the Z-axis ${acl.z}`);
});
acl.start();

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also