We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the zeroconf function for automatically find the concert ip.
The text was updated successfully, but these errors were encountered:
There is a python example code: http://avahi.org/wiki/PythonBrowseExample
I also have some old python code..........somewhere, if you need, ask.
You need to look for zeroconf types: '_ros-multimaster-hub._tcp.local'
You can see our concerts on linux from the command line:
avahi-browse -t -r _ros-multimaster-hub._tcp
Sorry, something went wrong.
Make sure you do a platform check in case we try and run on windows or apple sometime.
Best way to do platform checks in python, is not to check for platform.
Instead, do import checks, e.g.:
try: import dbus, gobject, avahi # some code here except ImportError: pass
No branches or pull requests
Add the zeroconf function for automatically find the concert ip.
The text was updated successfully, but these errors were encountered: