Skip to content

Commit

Permalink
refactor: Introduce Hidpp20 class
Browse files Browse the repository at this point in the history
Related #1097
  • Loading branch information
MattHag committed Feb 28, 2024
1 parent 9978615 commit da30e7b
Show file tree
Hide file tree
Showing 5 changed files with 395 additions and 423 deletions.
5 changes: 3 additions & 2 deletions lib/logitech_receiver/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@

import hidapi as _hid

from . import exceptions
from . import exceptions, hidpp20
from . import hidpp10_constants as _hidpp10_constants
from . import hidpp20 as _hidpp20
from . import hidpp20_constants as _hidpp20_constants
from .base_usb import ALL as _RECEIVER_USB_IDS
from .common import strhex as _strhex
from .descriptors import DEVICES as _DEVICES

logger = logging.getLogger(__name__)

_hidpp20 = hidpp20.Hidpp20()

#
#
#
Expand Down
Loading

0 comments on commit da30e7b

Please sign in to comment.