import requests
import socket
import struct
-import fcntl
import time
-import sacn
import sys
import os
print(output)
# use the dummy class as GPIO if the real GPIO module does not exist
-try: import RPi.GPIO
+try: import RPi.GPIO as GPIO
except ModuleNotFoundError:
print("RPi.GPIO Not found!\nDefaulting to dummy GPIO...")
GPIO = dummy(debug=False)
class clock():
def __init__(self):
# fixed variables
- self.url = "https://data.ozva.co.uk/shopping/clock.json"
+ self.url = "https://data.ozva.co.uk/api/clock"
self.request_speed = 0.1
+ self.ms1 = GPIO.HIGH
+ self.ms2 = GPIO.HIGH
+ self.total_steps = 1600
+
# dynamic variables
self.last_position = Value("I", 0)
self.current_position = Value("I", 0)
print("connecting to OzVa...")
try:
print("getting data...")
- r = requests.get(self.url)
+
+ r = ""
+ while r == "":
+ try:
+ r = requests.get(self.url)
+ except:
+ print("connection refused...")
+ time.sleep(5)
+
print("connected!")
while True:
t = time.time()
- r = requests.get(self.url)
+ r = ""
+ while r == "":
+ try:
+ r = requests.get(self.url)
+ except:
+ print("connection refused...")
+ time.sleep(5)
+
data = r.json()
new_target = int(data["currentPosition"])
+ new_target = round((new_target / 360) * self.total_steps)
+
if new_target != self.target_position.value:
self.last_position.value = self.current_position.value
self.target_position.value = new_target
def move(self):
print("starting motor service...")
- GPIO.setmode(GPIO.BOARD)
- GPIO.setup((11, 13, 15), GPIO.OUT)
+
+ move_delay = 0.01 # s
+
+ GPIO.setmode(GPIO.BCM)
+
+ GPIO.setup((15, 1, 4, 5, 0, 2), GPIO.OUT)
+
+ GPIO.output((0, 1), GPIO.HIGH)
+ GPIO.output(4, self.ms1)
+ GPIO.output(5, self.ms2)
try:
print("sending movement data...")
print(f"moving... @ {self.current_position.value}")
if forward and (not parked):
- GPIO.output(13, GPIO.HIGH)
- GPIO.output(11, GPIO.HIGH)
- GPIO.output((11, 13, 15), GPIO.LOW)
+ GPIO.output(2, GPIO.HIGH)
+ time.sleep(move_delay)
+ GPIO.output(15, GPIO.HIGH)
+ time.sleep(move_delay)
+ GPIO.output(15, GPIO.LOW)
self.current_position.value += 1
elif (not forward) and (not parked):
- GPIO.output(11, GPIO.HIGH)
- GPIO.output((11, 13, 15), GPIO.LOW)
+ GPIO.output(2, GPIO.LOW)
+ time.sleep(move_delay)
+ GPIO.output(15, GPIO.HIGH)
+ time.sleep(move_delay)
+ GPIO.output(15, GPIO.LOW)
self.current_position.value -= 1
+
duration = self.movement_speed.value / 1000 - (time.time() - t)
time.sleep(duration * (duration >= 0))