command.py 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #!/usr/bin/env python3
  2. from serial import Serial
  3. from serial.tools.list_ports import comports as port_list
  4. from remotes import tv
  5. from pprint import pprint
  6. from time import sleep
  7. ser = Serial(timeout=1)
  8. ser.baudrate = 9600
  9. #ser.port = '/dev/ttyACM0'
  10. # Find the first Arduino we can find (Or verify the port we got is valid)
  11. ports_open = port_list(False)
  12. found = False
  13. for p in ports_open:
  14. print("Device: /dev/{0:8} Manufacturer: {1}".format(p.name, p.manufacturer))
  15. if ser.port == None:
  16. if p.manufacturer == "Arduino (www.arduino.cc)":
  17. found = True
  18. ser.port = "/dev/{0}".format(p.name)
  19. print("Automagically found an Arduino on port '/dev/{0}'!".format(p.name))
  20. break # Stop needlessly looping over devices
  21. else:
  22. if '/dev/{0}'.format(p.name) == ser.port:
  23. found = True
  24. print("Found your Arduino!")
  25. break # Stop needlessly looping over devices
  26. # Verify I have found a Arduino
  27. if not found:
  28. raise TypeError("Device '{0}' not found!".format(ser.port))
  29. # Attempts to send the requested code
  30. def send_code(ky):
  31. if ky in tv:
  32. msg = "0x{0},{1},1\n".format(tv[ky], tv["_config"]["size"])
  33. ser.write(msg.encode())
  34. #print("Sent {0} {1}".format(ky, msg.encode()))
  35. else:
  36. print("Invalid key")
  37. class Navigate():
  38. """ A collection of orders/commands to be sent """
  39. def __init__(self):
  40. """ Initialize with no orders """
  41. self.orders = []
  42. def add_order(self, order, delay=2, repeat=1):
  43. """ Adds a new order to the end of the list of orders
  44. Given:
  45. Order
  46. Delay in seconds
  47. If wanted you can issue the command multiple times (Que it up in a single add_order)
  48. """
  49. for x in range(0, repeat):
  50. self.orders.append({"order": order, "delay": delay})
  51. def perform(self, response):
  52. """ Sends the code then waits, executes the first then removes it """
  53. if len(self.orders) > 0:
  54. if response in ("Ready!", "Ok"):
  55. send_code(self.orders[0]["order"])
  56. sleep(self.orders[0]["delay"])
  57. del self.orders[0]
  58. #print("There are {0} remaining orders".format(len(self.orders)))
  59. pluto = Navigate()
  60. pluto.add_order("power", delay=7)
  61. pluto.add_order("home", repeat=2)
  62. pluto.add_order("right", repeat=3)
  63. pluto.add_order("down", repeat=8)
  64. pluto.add_order("mute")
  65. pluto.add_order("ok")
  66. # Ok we are ready to actually open the Serial port
  67. ser.open()
  68. print("Opened!")
  69. while ser.is_open: # While the connection is open
  70. line = ser.readline().decode().strip("\n").strip("\r") # Attempt to read a line
  71. if line != "": # If there is a line Pretty Print it to the screen
  72. #pprint(line)
  73. pluto.perform(line)
  74. if len(pluto.orders) <= 0:
  75. ser.close()
  76. print("Closed!")