|
@@ -6,16 +6,17 @@ from serial.tools.list_ports import comports as port_list
|
|
|
from remotes import tv
|
|
|
|
|
|
from pprint import pprint
|
|
|
+from time import sleep
|
|
|
|
|
|
ser = Serial(timeout=1)
|
|
|
ser.baudrate = 9600
|
|
|
-ser.port = '/dev/ttyACM0'
|
|
|
+#ser.port = '/dev/ttyACM0'
|
|
|
|
|
|
# Find the first Arduino we can find (Or verify the port we got is valid)
|
|
|
ports_open = port_list(False)
|
|
|
found = False
|
|
|
for p in ports_open:
|
|
|
- #print(p)
|
|
|
+ print("Device: /dev/{0:8} Manufacturer: {1}".format(p.name, p.manufacturer))
|
|
|
if ser.port == None:
|
|
|
if p.manufacturer == "Arduino (www.arduino.cc)":
|
|
|
found = True
|
|
@@ -30,14 +31,14 @@ for p in ports_open:
|
|
|
|
|
|
# Verify I have found a Arduino
|
|
|
if not found:
|
|
|
- raise TypeError("Device not found!")
|
|
|
+ raise TypeError("Device '{0}' not found!".format(ser.port))
|
|
|
|
|
|
# Attempts to send the requested code
|
|
|
def send_code(ky):
|
|
|
if ky in tv:
|
|
|
msg = "0x{0},{1},1\n".format(tv[ky], tv["_config"]["size"])
|
|
|
ser.write(msg.encode())
|
|
|
- print("Sent {0}".format(msg.encode()))
|
|
|
+ print("Sent {0} {1}".format(ky, msg.encode()))
|
|
|
else:
|
|
|
print("Invalid key")
|
|
|
|
|
@@ -50,11 +51,39 @@ while ser.is_open: # While the connection is open
|
|
|
if line != "": # If there is a line Pretty Print it to the screen
|
|
|
pprint(line)
|
|
|
# Based on the itteration thru send some code
|
|
|
- if connect_t == 6:
|
|
|
+ if connect_t == 3:
|
|
|
send_code('power')
|
|
|
+ elif connect_t == 10:
|
|
|
+ send_code('home')
|
|
|
+ elif connect_t == 12:
|
|
|
+ send_code('home')
|
|
|
+ elif connect_t == 14:
|
|
|
+ send_code('right')
|
|
|
+ elif connect_t == 16:
|
|
|
+ send_code('right')
|
|
|
elif connect_t == 18:
|
|
|
- send_code('power')
|
|
|
- elif connect_t == 30: # Ok we are done testing let's quit
|
|
|
+ send_code('right')
|
|
|
+ elif connect_t == 20:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 22:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 24:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 26:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 28:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 30:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 32:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 34:
|
|
|
+ send_code('down')
|
|
|
+ elif connect_t == 36:
|
|
|
+ send_code('ok')
|
|
|
+ elif connect_t == 38:
|
|
|
+ send_code('mute')
|
|
|
+ elif connect_t >= 40: # Ok we are done testing let's quit
|
|
|
ser.close()
|
|
|
print("Closed!")
|
|
|
connect_t += 1 # About 1 every second (or when ever the timeout occurs
|