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
27814c1c
Commit
27814c1c
authored
6 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Handle more bluepy exceptions.
parent
f4f6ec5b
No related branches found
No related tags found
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
+17
-5
17 additions, 5 deletions
turntouch/turntouch.py
with
18 additions
and
6 deletions
setup.py
+
1
−
1
View file @
27814c1c
...
...
@@ -9,7 +9,7 @@ def read(filename):
setup
(
name
=
'
TurnTouch
'
,
version
=
'
0.
3
'
,
version
=
'
0.
4
'
,
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
+
17
−
5
View file @
27814c1c
...
...
@@ -265,8 +265,12 @@ class TurnTouch(btle.Peripheral):
@property
def
name
(
self
)
->
str
:
"""
Read the nickname of this remote.
"""
name_bytes
=
self
.
getCharacteristics
(
uuid
=
self
.
DEVICE_NAME_CHARACTERISTIC_UUID
)[
0
].
read
()
try
:
name_bytes
=
self
.
getCharacteristics
(
uuid
=
self
.
DEVICE_NAME_CHARACTERISTIC_UUID
)[
0
].
read
()
except
btle
.
BTLEException
:
raise
TurnTouchException
(
"
Failed to read name of device {addr}
"
.
format
(
addr
=
self
.
addr
))
logger
.
debug
(
"
Read name of device {address}:
'
{name}
'"
.
format
(
address
=
self
.
addr
,
name
=
name_bytes
))
return
name_bytes
.
decode
(
'
utf-8
'
).
rstrip
(
'
\0
'
)
...
...
@@ -280,15 +284,23 @@ class TurnTouch(btle.Peripheral):
name_characteristic
=
self
.
getCharacteristics
(
uuid
=
self
.
DEVICE_NAME_CHARACTERISTIC_UUID
)[
0
]
name_bytes
=
name
.
encode
(
'
utf-8
'
).
ljust
(
self
.
DEVICE_NAME_LENGTH
,
b
'
\0
'
)
name_characteristic
.
write
(
name_bytes
,
withResponse
=
True
)
try
:
name_characteristic
.
write
(
name_bytes
,
withResponse
=
True
)
except
btle
.
BTLEException
:
raise
TurnTouchException
(
"
Failed to set name of device {addr}
"
.
format
(
addr
=
self
.
addr
))
logger
.
debug
(
"
Set name for device {address} to
'
{name}
'"
.
format
(
address
=
self
.
addr
,
name
=
name_bytes
))
@property
def
battery
(
self
)
->
int
:
"""
Read the battery level (percentage) of this remote.
"""
battery_bytes
=
self
.
getCharacteristics
(
uuid
=
self
.
BATTERY_LEVEL_CHARACTERISTIC_UUID
)[
0
].
read
()
try
:
battery_bytes
=
self
.
getCharacteristics
(
uuid
=
self
.
BATTERY_LEVEL_CHARACTERISTIC_UUID
)[
0
].
read
()
except
btle
.
BTLEException
:
raise
TurnTouchException
(
"
Failed to read battery of device {addr}
"
.
format
(
addr
=
self
.
addr
))
logger
.
debug
(
"
Read device {address} battery level:
'
{battery}
'"
.
format
(
address
=
self
.
addr
,
battery
=
battery_bytes
))
return
int
.
from_bytes
(
battery_bytes
,
byteorder
=
'
big
'
)
...
...
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