-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
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
Having an issue with WifiConnection.py #209
Comments
I have the same issue with Bebop 2... |
For anyone else who gets this error, it is solved by reverting to an earlier version of zeroconf. This is done easily in pip via the command |
Hello, Cheers, |
I solved the issue by downgrading to zeroconf version 0.20.0, but now I get a new problem: ConnectionRefusedError: [Errno 61] Connection refused any help please? :) |
There was a change in zeroconf, where you have to change all instances of |
I did this exact thing, I changed all the lines that contains |
I am using python 3.9 and I am new to pyparrot. When trying to connect to my Bebop 2 I come across the following error:
File "C:\Users\Michael\AppData\Local\Programs\Python\Python39\lib\site-packages\pyparrot\networking\wifiConnection.py", line 314, in _handshake
self.drone_ip = ipaddress.IPv4Address(self.connection_info.address).exploded
AttributeError: 'ServiceInfo' object has no attribute 'address'
The code bringing up the issue is
I have looked up which attributes should replace
self.connection_info.address
and triedself.connection_info.addresses
,self.connection_info.addresses_by_version()
,self.connection_info.parsed_addresses()
and each of those bring different errors.
Any help to resolving this issue would be great, thanks.
The text was updated successfully, but these errors were encountered: