├── .gitignore ├── LICENSE ├── README.md ├── SonosRemote.jpg ├── config.py ├── get_sonos_ip.py ├── hardware.conf ├── install.sh ├── lircd.conf ├── lircrc ├── sore ├── sore.py └── sore.service /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/README.md -------------------------------------------------------------------------------- /SonosRemote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/SonosRemote.jpg -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/config.py -------------------------------------------------------------------------------- /get_sonos_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/get_sonos_ip.py -------------------------------------------------------------------------------- /hardware.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/hardware.conf -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/install.sh -------------------------------------------------------------------------------- /lircd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/lircd.conf -------------------------------------------------------------------------------- /lircrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/lircrc -------------------------------------------------------------------------------- /sore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/sore -------------------------------------------------------------------------------- /sore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/sore.py -------------------------------------------------------------------------------- /sore.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prebm/SonosRemote/HEAD/sore.service --------------------------------------------------------------------------------