blob: 31ec1ae570e56088f11cdb608a906019d9a4dfaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
class Gyroscope(object):
'''Gyroscope facade.
.. versionadded:: 1.2.0
'''
@property
def orientation(self):
'''Property that returns values of the current Gyroscope sensors, as
a (x, y, z) tuple. Returns (None, None, None) if no data is currently
available.
'''
return self.get_orientation()
def enable(self):
'''Activate the Gyroscope sensor.
'''
self._enable()
def disable(self):
'''Disable the Gyroscope sensor.
'''
self._disable()
def get_orientation(self):
return self._get_orientation()
# private
def _enable(self):
raise NotImplementedError()
def _disable(self):
raise NotImplementedError()
def _get_orientation(self):
raise NotImplementedError()
|