From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/pt-br/web/api/sensor/index.html | 89 +++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 files/pt-br/web/api/sensor/index.html (limited to 'files/pt-br/web/api/sensor/index.html') diff --git a/files/pt-br/web/api/sensor/index.html b/files/pt-br/web/api/sensor/index.html new file mode 100644 index 0000000000..afc91f60d5 --- /dev/null +++ b/files/pt-br/web/api/sensor/index.html @@ -0,0 +1,89 @@ +--- +title: Sensor +slug: Web/API/Sensor +tags: + - API + - Generic Sensor API + - Interface + - NeedsTranslation + - Reference + - Sensor + - Sensor APIs + - Sensors + - TopicStub +translation_of: Web/API/Sensor +--- +
{{APIRef("Generic Sensor API")}}
+ +

The Sensor interface of the the Sensor APIs is the base class for all the other sensor interfaces. This interface cannot be used directly. Instead it provides properties, event handlers, and methods accessed by interfaces that inherit from it.

+ +

If a feature policy blocks use of a feature it is because your code is inconsistent with the policies set on your server. This is not something that would ever be shown to a user. See {{httpheader('Feature-Policy')}} for implementation instructions.

+ +

Interfaces based on Sensor

+ +

Below is a list of interfaces based on the Sensor interface.

+ +
+ +
+ +

Properties

+ +
+
{{domxref('Sensor.activated')}} {{readonlyinline}}
+
Returns a {{jsxref("Boolean")}} indicating whether the sensor is active.
+
{{domxref('Sensor.hasReading')}} {{readonlyinline}}
+
Returns a {{jsxref("Boolean")}} indicating whether the sensor has a reading.
+
{{domxref('Sensor.timestamp')}} {{readonlyinline}}
+
Returns the time stamp of the latest sensor reading.
+
+ +

Event handlers

+ +
+
{{domxref('Sensor.onerror')}}
+
Called when an error occurs on one of the child interfaces of the Sensor interface.
+
{{domxref('Sensor.onreading')}}
+
Called when a reading is taken on one of the child interfaces of the Sensor interface.
+
{{domxref('Sensor.onactivate')}}
+
Called when one of the Sensor interface's becomes active.
+
+ +

Methods

+ +
+
{{domxref('Sensor.start()')}}
+
Activates one of the sensors based on Sensor.
+
{{domxref('Sensor.stop()')}}
+
Deactivates one of the sensors based on Sensor.
+
+ +

Specifications

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Generic Sensor','#the-sensor-interface','Sensor')}}{{Spec2('Generic Sensor')}}Initial definition.
+ +

Browser compatibility

+ + + +

{{Compat("api.Sensor")}}

-- cgit v1.2.3-54-g00ecf