mirror of
https://github.com/gryf/linak-ctrl.git
synced 2026-04-26 00:11:30 +02:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e9ea91f2c3 | |||
| aa5aecb205 | |||
| 2013dffcf9 |
+15
-18
@@ -112,6 +112,10 @@ class LinakDevice:
|
|||||||
self._dev = usb.core.find(idVendor=LinakDevice.VEND,
|
self._dev = usb.core.find(idVendor=LinakDevice.VEND,
|
||||||
idProduct=LinakDevice.PROD)
|
idProduct=LinakDevice.PROD)
|
||||||
|
|
||||||
|
# detach kernel driver, if attached
|
||||||
|
if self._dev.is_kernel_driver_active(0):
|
||||||
|
self._dev.detach_kernel_driver(0)
|
||||||
|
|
||||||
# init device
|
# init device
|
||||||
buf = [0 for _ in range(BUF_LEN)]
|
buf = [0 for _ in range(BUF_LEN)]
|
||||||
buf[0] = MODE_OF_OPERATION # 0x03 Feature report ID = 3
|
buf[0] = MODE_OF_OPERATION # 0x03 Feature report ID = 3
|
||||||
@@ -123,25 +127,18 @@ class LinakDevice:
|
|||||||
# hold a little bit, to make it effect.
|
# hold a little bit, to make it effect.
|
||||||
time.sleep(0.5)
|
time.sleep(0.5)
|
||||||
|
|
||||||
# detach kernel driver, if attached
|
|
||||||
if self._dev.is_kernel_driver_active(0):
|
|
||||||
self._dev.detach_kernel_driver(0)
|
|
||||||
|
|
||||||
def get_position(self, args):
|
def get_position(self, args):
|
||||||
if args.loop:
|
try:
|
||||||
try:
|
while True:
|
||||||
while True:
|
report = self._get_report()
|
||||||
report = self._get_report()
|
LOG.warning('Position: %s, height: %.2fcm, moving: %s',
|
||||||
LOG.warning('Position: %s, height: %.2fcm, moving: %s',
|
report.position, report.position_in_cm,
|
||||||
report.position, report.position_in_cm,
|
report.moving)
|
||||||
report.moving)
|
if not args.loop:
|
||||||
time.sleep(0.2)
|
break
|
||||||
except KeyboardInterrupt:
|
time.sleep(0.2)
|
||||||
return
|
except KeyboardInterrupt:
|
||||||
else:
|
return
|
||||||
report = self._get_report()
|
|
||||||
LOG.warning('Position: %s, height: %.2fcm, moving: %s',
|
|
||||||
report.position, report.position_in_cm, report.moving)
|
|
||||||
|
|
||||||
def move(self, args):
|
def move(self, args):
|
||||||
retry_count = 3
|
retry_count = 3
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
pbr
|
||||||
|
pyusb>=1.1.1
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
[metadata]
|
||||||
|
name = linak-ctrl
|
||||||
|
summary = Control Linak powered desks using USB2LIN06 cable.
|
||||||
|
description-file = README.rst
|
||||||
|
author = Roman Dobosz
|
||||||
|
author-email = gryf73@gmail.com
|
||||||
|
home-page = https://gihtub.com/gryf/linak-ctrl
|
||||||
|
license = BSD
|
||||||
|
classifier =
|
||||||
|
Development Status :: 5 - Production/Stable
|
||||||
|
Environment :: Console
|
||||||
|
Intended Audience :: End Users/Desktop
|
||||||
|
License :: OSI Approved :: BSD License
|
||||||
|
Operating System :: POSIX :: Linux
|
||||||
|
Programming Language :: Python
|
||||||
|
Programming Language :: Python :: 3
|
||||||
|
Programming Language :: Python :: 3.7
|
||||||
|
Programming Language :: Python :: 3.8
|
||||||
|
Programming Language :: Python :: 3.9
|
||||||
|
Topic :: System :: Networking
|
||||||
|
|
||||||
|
[install]
|
||||||
|
record = install.log
|
||||||
|
|
||||||
|
[options.entry_points]
|
||||||
|
console_scripts =
|
||||||
|
linak-ctrl= linak_ctrl:main
|
||||||
|
|
||||||
|
[options]
|
||||||
|
install_requires =
|
||||||
|
pyusb
|
||||||
|
|
||||||
|
[bdist_wheel]
|
||||||
|
universal = 1
|
||||||
Reference in New Issue
Block a user