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
Python's async and await need to be added to pi-dial which will require a rewrite.
The denonavr project uses async and it's the correct way to call functions for the receiver. I'm currently using legacy functionality that may be deprecated in the feature.
Using async will also allow new functionality: When muted, I can add a sleep method that turns off mute after a set period of time so I can be reminded if my needle is still going round & round on the turntable. Doing it now does not allow it to be unmuted until the sleep time has ended.
The text was updated successfully, but these errors were encountered:
Python's
async
andawait
need to be added to pi-dial which will require a rewrite.The
denonavr
project usesasync
and it's the correct way to call functions for the receiver. I'm currently using legacy functionality that may be deprecated in the feature.Using
async
will also allow new functionality: When muted, I can add asleep
method that turns off mute after a set period of time so I can be reminded if my needle is still going round & round on the turntable. Doing it now does not allow it to be unmuted until thesleep
time has ended.The text was updated successfully, but these errors were encountered: