command.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. from sys import argv
  8. ser = Serial(timeout=1)
  9. ser.baudrate = 9600
  10. #ser.port = '/dev/ttyACM0'
  11. # Chooses one of the Navigate objects to perform
  12. # Via an argument
  13. if len(argv) <= 1:
  14. print("Usage: {0} <action> (Where action is either pluto, test, or church)".format(argv[0]))
  15. exit()
  16. action = argv[1].lower().strip()
  17. #pprint(action)
  18. if action not in ("pluto", "test", "church"):
  19. print("Usage: {0} <action> (Where action is either pluto, test, or church)".format(argv[0]))
  20. exit()
  21. # Find the first Arduino we can find (Or verify the port we got is valid)
  22. ports_open = port_list(False)
  23. found = False
  24. for p in ports_open:
  25. print("Device: /dev/{0:8} Manufacturer: {1}".format(p.name, p.manufacturer))
  26. if ser.port == None:
  27. if p.manufacturer == "Arduino (www.arduino.cc)":
  28. found = True
  29. ser.port = "/dev/{0}".format(p.name)
  30. print("Automagically found an Arduino on port '/dev/{0}'!".format(p.name))
  31. break # Stop needlessly looping over devices
  32. else:
  33. if '/dev/{0}'.format(p.name) == ser.port:
  34. found = True
  35. print("Found your Arduino!")
  36. break # Stop needlessly looping over devices
  37. # Verify I have found a Arduino
  38. if not found:
  39. raise TypeError("Device '{0}' not found!".format(ser.port))
  40. # Attempts to send the requested code
  41. def send_code(ky):
  42. if ky in tv:
  43. msg = "0x{0},{1},1\n".format(tv[ky], tv["_config"]["size"])
  44. ser.write(msg.encode())
  45. #print("< Sent {0} {1}".format(ky, msg.encode()))
  46. print("< Sent {0}".format(ky))
  47. else:
  48. print("Invalid key")
  49. class Navigate():
  50. """ A collection of orders/commands to be sent """
  51. def __init__(self):
  52. """ Initialize with no orders """
  53. self.orders = []
  54. def add_order(self, order, delay=1, repeat=1):
  55. """ Adds a new order to the end of the list of orders
  56. Given:
  57. Order
  58. Delay in seconds
  59. If wanted you can issue the command multiple times (Que it up in a single add_order)
  60. """
  61. for x in range(0, repeat):
  62. self.orders.append({"order": order, "delay": delay})
  63. def perform(self, response):
  64. """ Sends the code then waits, executes the first then removes it """
  65. if len(self.orders) > 0:
  66. if self.orders[0]["order"] == "wait":
  67. print(" Wait {0}".format(self.orders[0]["delay"]))
  68. sleep(self.orders[0]["delay"])
  69. del self.orders[0]
  70. elif response in ("Ready!", "Ok"):
  71. send_code(self.orders[0]["order"])
  72. sleep(self.orders[0]["delay"])
  73. del self.orders[0]
  74. #print("There are {0} remaining orders".format(len(self.orders)))
  75. # Make some built in orders
  76. def goto_pluto():
  77. """ This will go to Pluto TV from the TV off
  78. """
  79. pluto = Navigate()
  80. pluto.add_order("power", delay=7)
  81. pluto.add_order("mute")
  82. pluto.add_order("home", repeat=2)
  83. pluto.add_order("right", repeat=3)
  84. pluto.add_order("down", repeat=8)
  85. pluto.add_order("ok")
  86. return pluto
  87. def test_system():
  88. """ This will test the basic movements from the TV off
  89. """
  90. test = Navigate()
  91. test.add_order("power", delay=7)
  92. test.add_order("mute")
  93. test.add_order("home", repeat=2)
  94. test.add_order("right")
  95. for _ in range(0, 4):
  96. test.add_order("right", repeat=2)
  97. test.add_order("down", repeat=2)
  98. test.add_order("left", repeat=2)
  99. test.add_order("up", repeat=2)
  100. test.add_order("left")
  101. test.add_order("power")
  102. return test
  103. def goto_church():
  104. """ This will go to the YouTube channel for our church, from the TV off
  105. """
  106. church = Navigate()
  107. church.add_order("power", delay=7)
  108. church.add_order("mute")
  109. church.add_order("home", repeat=2)
  110. church.add_order("right", repeat=3)
  111. church.add_order("down", repeat=5)
  112. church.add_order("ok", delay=7)
  113. church.add_order("left")
  114. church.add_order("up")
  115. church.add_order("right")
  116. church.add_order("ok", delay=3)
  117. church.add_order("ok", delay=2)
  118. church.add_order("mute")
  119. return church
  120. if action == "test":
  121. nav = test_system()
  122. elif action == "pluto":
  123. nav = goto_pluto()
  124. elif action == "church":
  125. nav = goto_church()
  126. # Ok we are ready to actually open the Serial port
  127. ser.open()
  128. print("Opened!")
  129. while ser.is_open: # While the connection is open
  130. line = ser.readline().decode().strip("\n").strip("\r") # Attempt to read a line
  131. if line != "": # If there is a line Pretty Print it to the screen
  132. print("> {0}".format(line))
  133. #pluto.perform(line)
  134. #test.perform(line)
  135. nav.perform(line)
  136. #if len(pluto.orders) <= 0:
  137. #if len(test.orders) <= 0:
  138. if len(nav.orders) <= 0:
  139. ser.close()
  140. print("Closed!")