command.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. ser = Serial(timeout=1)
  7. ser.baudrate = 9600
  8. ser.port = '/dev/ttyACM0'
  9. # Find the first Arduino we can find (Or verify the port we got is valid)
  10. ports_open = port_list(False)
  11. found = False
  12. for p in ports_open:
  13. #print(p)
  14. if ser.port == None:
  15. if p.manufacturer == "Arduino (www.arduino.cc)":
  16. found = True
  17. ser.port = "/dev/{0}".format(p.name)
  18. print("Automagically found an Arduino on port '/dev/{0}'!".format(p.name))
  19. break # Stop needlessly looping over devices
  20. else:
  21. if '/dev/{0}'.format(p.name) == ser.port:
  22. found = True
  23. print("Found your Arduino!")
  24. break # Stop needlessly looping over devices
  25. # Verify I have found a Arduino
  26. if not found:
  27. raise TypeError("Device not found!")
  28. # Attempts to send the requested code
  29. def send_code(ky):
  30. if ky in tv:
  31. msg = "0x{0},{1},1\n".format(tv[ky], tv["_config"]["size"])
  32. ser.write(msg.encode())
  33. print("Sent {0}".format(msg.encode()))
  34. else:
  35. print("Invalid key")
  36. # Ok we are ready to actually open the Serial port
  37. ser.open()
  38. print("Opened!")
  39. connect_t = 0 # Aproximately how many itterations we have done (Aprox. 1 second, due to timeout)
  40. while ser.is_open: # While the connection is open
  41. line = ser.readline().decode().strip("\n").strip("\r") # Attempt to read a line
  42. if line != "": # If there is a line Pretty Print it to the screen
  43. pprint(line)
  44. # Based on the itteration thru send some code
  45. if connect_t == 6:
  46. send_code('power')
  47. elif connect_t == 18:
  48. send_code('power')
  49. elif connect_t == 30: # Ok we are done testing let's quit
  50. ser.close()
  51. print("Closed!")
  52. connect_t += 1 # About 1 every second (or when ever the timeout occurs