This commit is contained in:
Lukas Schulz 2020-12-20 02:27:54 +01:00
parent 3bc534d362
commit 57cbaca892

View file

@ -32,6 +32,8 @@ screen = RGBMatrix(options = options)
song_name="" song_name=""
artist_name="" artist_name=""
cache_path="/home/pi"
is_playing = False is_playing = False
token = None #oauth2.SpotifyOAuth(username, scope, client_id, client_secret, redirect_uri) token = None #oauth2.SpotifyOAuth(username, scope, client_id, client_secret, redirect_uri)
@ -162,7 +164,7 @@ def is_token_expired():
client_secret, client_secret,
redirect_uri, redirect_uri,
scope=scope, scope=scope,
#cache_path=cache_path, cache_path=cache_path,
username=username, username=username,
open_browser=False open_browser=False
) )