command.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. # Ok we are ready to actually open the Serial port
  38. ser.open()
  39. print("Opened!")
  40. connect_t = 0 # Aproximately how many itterations we have done (Aprox. 1 second, due to timeout)
  41. while ser.is_open: # While the connection is open
  42. line = ser.readline().decode().strip("\n").strip("\r") # Attempt to read a line
  43. if line != "": # If there is a line Pretty Print it to the screen
  44. pprint(line)
  45. # Based on the itteration thru send some code
  46. if connect_t == 3:
  47. send_code('power')
  48. elif connect_t == 10:
  49. send_code('home')
  50. elif connect_t == 12:
  51. send_code('home')
  52. elif connect_t == 14:
  53. send_code('right')
  54. elif connect_t == 16:
  55. send_code('right')
  56. elif connect_t == 18:
  57. send_code('right')
  58. elif connect_t == 20:
  59. send_code('down')
  60. elif connect_t == 22:
  61. send_code('down')
  62. elif connect_t == 24:
  63. send_code('down')
  64. elif connect_t == 26:
  65. send_code('down')
  66. elif connect_t == 28:
  67. send_code('down')
  68. elif connect_t == 30:
  69. send_code('down')
  70. elif connect_t == 32:
  71. send_code('down')
  72. elif connect_t == 34:
  73. send_code('down')
  74. elif connect_t == 36:
  75. send_code('ok')
  76. elif connect_t == 38:
  77. send_code('mute')
  78. elif connect_t >= 40: # Ok we are done testing let's quit
  79. ser.close()
  80. print("Closed!")
  81. connect_t += 1 # About 1 every second (or when ever the timeout occurs