Initial commit

This commit is contained in:
Michael Smith
2023-05-04 11:24:05 +02:00
commit f7b57817ff
9 changed files with 307971 additions and 0 deletions

7
cycle.py Normal file
View File

@@ -0,0 +1,7 @@
class Cycle:
def __init__(self, rate, reverse, low, high):
self.count = 0
self.rate = rate
self.reverse = reverse
self.low = low
self.high = high