Lincoln Lorenz

Results 222 comments of Lincoln Lorenz

I haven't fully thought through how to handle extra outputs, one limitation of the current design of AmpliPi would only be able to support this for digital/streaming input sources. That...

Awesome! We'll try integrating this and see where it goes. I think the combination of this and our initial start on bluetooth [here](https://github.com/micro-nova/AmpliPi/commits/bluetooth.) will hopefully get us -pretty far.

As a workaround for now you may be able to add something that queries github and amplipi for the info ```python import requests # find the latest release (GitHub sorts...

With 0.1.9 this should be fully automatable by comparing the `info.version` and `info.latest_release`.

Here's some example code for how to do the check now in python: ```python import requests status = requests.get('http://amplipi.local/api').json() current_version = status['info']['version'] latest_release = status['info']['latest_release'] if latest_release != 'unknown' and...

The CM3 module has a 64-bit pi on it that we are running a 32-bit OS on. There are 2 mains tasks to do a 64-bit upgrade: - [ ]...

We so sorry you are having issues with this! It sounds pretty frustrating. We can troubleshoot this faster with a little more info. Do you mind sharing your config? Go...

Hmm that is wacky. I wish I could easily get the output of the underlying vollibrespot deamon to debug this a little further, but I would need you to ssh...

Just to clarify here. At the moment when a Spotify or other streaming input is 'stolen' from another source, that Spotify stream is stopped, then restarted and will need to...

> I did some research here and it looks like Google has no intention of open sourcing their Google Cast receiver. Realistically if we ask google nicely they may give...