Skip to content
View hanagongs's full-sized avatar
😸
😸

Block or report hanagongs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. cookiecutter/cookiecutter-django cookiecutter/cookiecutter-django Public

    Cookiecutter Django is a framework for jumpstarting production-ready Django projects quickly.

    Python 13.5k 3.1k

  2. check_kernel_example.py check_kernel_example.py
    1
    # PY_USB modules
    2
    import usb.core
    3
    import usb.util
    4
    
                  
    5
    # Use the Vendor ID and Product ID from the lsusb output
  3. usb_command_example.py usb_command_example.py
    1
    # PY_USB modules
    2
    import usb.core
    3
    import usb.util
    4
    
                  
    5
    PACKET_LEN = 8
  4. get_endpoints_example.py get_endpoints_example.py
    1
    def get_endpoints():
    2
      interface_endpoints = interface.endpoints()
    3
      endpoints = {}
    4
      
    5
      for e in interface_endpoints:
  5. parse_packet_example.py parse_packet_example.py
    1
    PACKET_LEN = 8
    2
    HEADER_LEN = 1
    3
    DATA_LEN = 1
    4
    
                  
    5
    def parse(packet, header):