Would it be possible to add a simple UI to the skill.
We would just need to add these lines to the init.py
line 93: self.play_info["song_art"] = ""
line 310: self.gui.show_image(self.play_info["song_art"])
line 311: self.gui.show_text(self.play_info["song_artist"] + "\n" + "\n" + self.play_info["song_title"])
line 378: self.play_info["song_art"] = info.get("coverArt", "")
This will give us on the left side of the screen the album art. The right side will have the artist and title of the screen. After the idle timer it will return to the homescreen backdrop.
Would it be possible to add a simple UI to the skill.
We would just need to add these lines to the init.py
line 93: self.play_info["song_art"] = ""
line 310: self.gui.show_image(self.play_info["song_art"])
line 311: self.gui.show_text(self.play_info["song_artist"] + "\n" + "\n" + self.play_info["song_title"])
line 378: self.play_info["song_art"] = info.get("coverArt", "")
This will give us on the left side of the screen the album art. The right side will have the artist and title of the screen. After the idle timer it will return to the homescreen backdrop.