control.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #!/usr/bin/env python3
  2. import usb.core as core
  3. import usb.util as util
  4. from usb.core import USBError
  5. from remotes import tv
  6. # Use usb-devices to find the Arduino
  7. dev = core.find(idVendor=0x2341, idProduct=0x0043)
  8. detached = False
  9. if dev is None:
  10. raise ValueError("Device Not Found!")
  11. if dev.is_kernel_driver_active(0):
  12. try:
  13. dev.detach_kernel_driver(0)
  14. detached = True
  15. print("Kernel detached")
  16. except USBError as e:
  17. exit("Failed detaching kernel driver!")
  18. else:
  19. print("No Kernel Attached!")
  20. try:
  21. util.claim_interface(dev, 0)
  22. print("Claimed Device!")
  23. except:
  24. endpoint = dev[0][(0,0)][0]
  25. data = dev.read(endpoint.bEndpointAddress, 0x0040)
  26. print(type(data))
  27. print(data)
  28. if detached:
  29. dev.attach_kernel_driver(0)
  30. print("Kernel attached")
  31. exit()
  32. #print(type(dev))
  33. #print(dev)
  34. # Setup the device
  35. # https://github.com/pyusb/pyusb/issues/357
  36. #dev.set_configuration()
  37. # Get the config
  38. cfg = dev.get_active_configuration()
  39. print(cfg)
  40. # Index the config for interfaces
  41. intf = cfg[(0, 0)]
  42. # If you don't know the endpoint
  43. # Obatains the endpoint out
  44. ep = util.find_descriptor(
  45. intf,
  46. custom_match = \
  47. lambda e: \
  48. util.endpoint_direction(e.bEndpointAddress) == \
  49. util.ENDPOINT_OUT)
  50. assert ep is not None
  51. ep.write('0x57E3E817,32,1\n')