You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
have Volt Polska branded solar controler, had problems with constant timeouts on connection attempt, solved via changes to your code:
in function main
print("adapter started")
#modded by alana-chan
while True:
try:
device = adapter.connect(sys.argv[2])
break
except pygatt.exceptions.NotConnectedError:
print('Waiting...')
#end mod
print("connected")
platform: laptop running ubuntu22 with rtl8761b usb dongle
The text was updated successfully, but these errors were encountered:
Hi @Alana-chan!
Thanks for your issue. Currently this project is at very early stage of it's development, so many things are missing. I'm planning to add more exceptions and updates, but currently I don't have free time to do so.
If you want to keep your credits into the project, good idea would be for you to create a Pull Request.
have Volt Polska branded solar controler, had problems with constant timeouts on connection attempt, solved via changes to your code:
in function main
#modded by alana-chan
while True:
try:
device = adapter.connect(sys.argv[2])
break
except pygatt.exceptions.NotConnectedError:
print('Waiting...')
#end mod
platform: laptop running ubuntu22 with rtl8761b usb dongle
The text was updated successfully, but these errors were encountered: