summaryrefslogtreecommitdiff
path: root/external/plyer/facades/gyroscope.py
diff options
context:
space:
mode:
authorLivio Recchia <recchialivio@libero.it>2020-02-10 23:06:34 +0100
committerLivio Recchia <recchialivio@libero.it>2020-02-10 23:06:34 +0100
commit9a13903a2f7d3a65fdf15a65fb59cccd622e2066 (patch)
tree9403b7dff39eb5e5d7fa0f79efb69b496add4c4b /external/plyer/facades/gyroscope.py
parent11cc316b74d5f3f283413a33e7693b314741aa4a (diff)
downloadmanachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.tar.gz
manachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.tar.bz2
manachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.tar.xz
manachat-9a13903a2f7d3a65fdf15a65fb59cccd622e2066.zip
Initial commit
Diffstat (limited to 'external/plyer/facades/gyroscope.py')
-rw-r--r--external/plyer/facades/gyroscope.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/external/plyer/facades/gyroscope.py b/external/plyer/facades/gyroscope.py
new file mode 100644
index 0000000..31ec1ae
--- /dev/null
+++ b/external/plyer/facades/gyroscope.py
@@ -0,0 +1,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()