Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TurnTouch Python Library
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
TurnTouch Python Library
Commits
7b0d84da
Commit
7b0d84da
authored
6 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Add more exception handling.
parent
27814c1c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
setup.py
+1
-1
1 addition, 1 deletion
setup.py
turntouch/turntouch.py
+16
-10
16 additions, 10 deletions
turntouch/turntouch.py
with
17 additions
and
11 deletions
setup.py
+
1
−
1
View file @
7b0d84da
...
...
@@ -9,7 +9,7 @@ def read(filename):
setup
(
name
=
'
TurnTouch
'
,
version
=
'
0.4
'
,
version
=
'
0.4
.1
'
,
url
=
'
https://github.com/antsar/python-turntouch
'
,
author
=
'
Anton Sarukhanov
'
,
author_email
=
'
code@ant.sr
'
,
...
...
This diff is collapsed.
Click to expand it.
turntouch/turntouch.py
+
16
−
10
View file @
7b0d84da
...
...
@@ -327,16 +327,22 @@ class TurnTouch(btle.Peripheral):
def
_enable_notifications
(
self
,
enabled
=
True
):
"""
Tell the remote to start sending button press notifications.
"""
notification_handle
=
self
.
getCharacteristics
(
uuid
=
self
.
BUTTON_STATUS_CHARACTERISTIC_UUID
)[
0
].
getHandle
()
notification_enable_handle
=
notification_handle
+
1
logger
.
debug
(
"
{action} notifications for device {address}...
"
.
format
(
action
=
"
Enabling
"
if
enabled
else
"
Disabling
"
,
address
=
self
.
addr
))
self
.
writeCharacteristic
(
notification_enable_handle
,
bytes
([
0x01
if
enabled
else
0x00
,
0x00
]),
withResponse
=
True
)
logger
.
debug
(
"
Notifications {action} for device {address}.
"
.
format
(
action
=
"
enabled
"
if
enabled
else
"
disabled
"
,
address
=
self
.
addr
))
try
:
notification_handle
=
self
.
getCharacteristics
(
uuid
=
self
.
BUTTON_STATUS_CHARACTERISTIC_UUID
)[
0
].
getHandle
()
notification_enable_handle
=
notification_handle
+
1
logger
.
debug
(
"
{action} notifications for device {address}...
"
.
format
(
action
=
"
Enabling
"
if
enabled
else
"
Disabling
"
,
address
=
self
.
addr
))
self
.
writeCharacteristic
(
notification_enable_handle
,
bytes
([
0x01
if
enabled
else
0x00
,
0x00
]),
withResponse
=
True
)
logger
.
debug
(
"
Notifications {action} for device {address}.
"
.
format
(
action
=
"
enabled
"
if
enabled
else
"
disabled
"
,
address
=
self
.
addr
))
except
btle
.
BTLEException
:
raise
TurnTouchException
(
"
Failed to enable notifications for
"
"
device {addr}
"
.
format
(
addr
=
self
.
addr
))
class
NotificationDelegate
(
btle
.
DefaultDelegate
):
"""
Handle callbacks for notifications from the device.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment