aboutsummaryrefslogtreecommitdiff
path: root/turtetris_master/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'turtetris_master/__init__.py')
-rw-r--r--turtetris_master/__init__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/turtetris_master/__init__.py b/turtetris_master/__init__.py
new file mode 100644
index 0000000..9cf22b1
--- /dev/null
+++ b/turtetris_master/__init__.py
@@ -0,0 +1,12 @@
+from .usb_input import Gamepad
+
+
+def main():
+ "Main function"
+ inpt = Gamepad()
+ while True:
+ print(inpt.check())
+
+
+if __name__ == '__main__':
+ main()