device: clean up __init__ in logitech_receiver

This commit is contained in:
Peter F. Patel-Schneider 2024-02-19 13:48:54 -05:00
parent 767a729598
commit 8e44c08139
1 changed files with 1 additions and 15 deletions

View File

@ -15,27 +15,13 @@
## You should have received a copy of the GNU General Public License along
## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""Low-level interface for devices connected through a Logitech Universal
Receiver (UR).
"""Low-level interface for devices using Logitech HID++ protocol.
Uses the HID api exposed through hidapi.py, a Python thin layer over a native
implementation.
Incomplete. Based on a bit of documentation, trial-and-error, and guesswork.
References:
http://julien.danjou.info/blog/2012/logitech-k750-linux-support
http://6xq.net/git/lars/lshidpp.git/plain/doc/
"""
import logging
logger = logging.getLogger(__name__)
logger.setLevel(logging.root.level)
# if logging.root.level > logging.DEBUG:
# logger.addHandler(logging.NullHandler())
# logger.propagate = 0
del logging
__version__ = "0.9"