from gpiozero import LED
from adafruit_servokit import ServoKit
import tty, sys, termios
kit = ServoKit(channels=16)
laser = LED(17)
filedescriptors = termios.tcgetattr(sys.stdin)
tty.setcbreak(sys.stdin)
x = 0
y = 0
print (chr(12))
print ("BIRDZAPPER 0.2")
print ("______________")
print ()
print ()
print ("Gebruik de pijltjestoetsen om de laser te positioneren")
print ("Noteer de minimum an maximum waarden van x en y")
print ()
x = 0
y = 0
while True:
print ("Waarde X = " + str(x) + " Y = " + str(y))
print ()
kit.servo[0].angle = x
kit.servo[4].angle = y
toets=sys.stdin.read(1)
ascii = ord(toets)
if (ascii == 27):
termios.tcsetattr(sys.stdin, termios.TCSADRAIN,filedescriptors)
break
if (toets == "a") or (toets == "A") or (toets == "4"):
x -= 2
if (x < 0):
x = 0
if (toets == "d") or (toets == "D") or (toets == "6"):
x += 2
if (x > 180):
x = 180
if (toets == "w") or (toets == "W") or (toets == "8"):
y += 2
if (y > 180):
y = 180
if (toets == "s") or (toets == "S") or (toets == "2"):
y -= 2
if (y < 0):
y = 0
print ()
termios.tcsetattr(sys.stdin, termios.TCSADRAIN,filedescriptors)