blob: aed4bbf7ceb940448f684bcf0c2e3b7741116bfc (
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 Compass(object):
'''Compass facade.
.. versionadded:: 1.2.0
'''
@property
def orientation(self):
'''Property that returns values of the current compass
(magnetic field) 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 compass sensor.
'''
self._enable()
def disable(self):
'''Disable the compass 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()
|