Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dark-Mute
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Jess Ward
Dark-Mute
Commits
1b4c67c7
Commit
1b4c67c7
authored
6 years ago
by
Jess Ward
Browse files
Options
Downloads
Patches
Plain Diff
put zeroconf into function, added get_client logic
parent
e0d0ab6f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
snapcast.py
+19
-11
19 additions, 11 deletions
snapcast.py
with
19 additions
and
11 deletions
snapcast.py
+
19
−
11
View file @
1b4c67c7
from
zeroconf
import
ServiceBrowser
,
Zeroconf
import
snapcast.control
class
Scanner
:
services
=
[]
def
remove_service
(
self
,
zeroconf
,
type
,
name
):
print
(
"
Service %s removed
"
%
(
name
,))
def
add_service
(
self
,
zeroconf
,
type
,
name
):
snapcast_server
=
[]
info
=
zeroconf
.
get_service_info
(
type
,
name
)
s
napcast_server
.
append
(
name
,
info
)
s
elf
.
services
.
append
(
info
)
zeroconf
=
Zeroconf
()
listener
=
Scanner
()
browser
=
ServiceBrowser
(
zeroconf
,
"
_snapcast._tcp.local.
"
,
listener
)
def
get_snapcast_server
(
services
):
'''
scan for services then find snapcast server
'''
zeroconf
=
Zeroconf
()
listener
=
Scanner
()
ServiceBrowser
(
zeroconf
,
"
_snapcast._tcp.local.
"
,
listener
)
server
=
snapcast
.
control
.
Snapserver
(
services
,
snapcast
.
control
.
CONTROL
.
PORT
)
try
:
input
(
"
Press enter to exit...
\n\n
"
)
finally
:
zeroconf
.
close
()
while
services
==
[]:
pass
return
server
def
get_snapcast_client
():
pass
def
get_snapcast_client
(
server
):
'''
scan through list of clients to find correct one
'''
for
client
in
server
.
clients
:
print
(
client
.
name
)
print
(
client
.
identifier
)
# TODO Scroll through list of clients and find right one
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