├── .gitignore ├── README.md ├── components └── es8388 │ ├── __init__.py │ ├── __pycache__ │ └── __init__.cpython-310.pyc │ ├── es8388_component.cpp │ └── es8388_component.h ├── esp32_trm.pdf ├── luxe_microWW.bin ├── luxe_microWW.yaml ├── luxe_partitions.csv ├── manifest_update.json ├── other devices yaml examples ├── MuseRadioHomeAssistant.yaml └── VoicePEhome-assistant-voice.yaml ├── update_firmware.bin └── wav └── sounds_timer_finished.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/README.md -------------------------------------------------------------------------------- /components/es8388/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/components/es8388/__init__.py -------------------------------------------------------------------------------- /components/es8388/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/components/es8388/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /components/es8388/es8388_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/components/es8388/es8388_component.cpp -------------------------------------------------------------------------------- /components/es8388/es8388_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/components/es8388/es8388_component.h -------------------------------------------------------------------------------- /esp32_trm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/esp32_trm.pdf -------------------------------------------------------------------------------- /luxe_microWW.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/luxe_microWW.bin -------------------------------------------------------------------------------- /luxe_microWW.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/luxe_microWW.yaml -------------------------------------------------------------------------------- /luxe_partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/luxe_partitions.csv -------------------------------------------------------------------------------- /manifest_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/manifest_update.json -------------------------------------------------------------------------------- /other devices yaml examples/MuseRadioHomeAssistant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/other devices yaml examples/MuseRadioHomeAssistant.yaml -------------------------------------------------------------------------------- /other devices yaml examples/VoicePEhome-assistant-voice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/other devices yaml examples/VoicePEhome-assistant-voice.yaml -------------------------------------------------------------------------------- /update_firmware.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/update_firmware.bin -------------------------------------------------------------------------------- /wav/sounds_timer_finished.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RASPIAUDIO/esphomeLuxe/HEAD/wav/sounds_timer_finished.wav --------------------------------------------------------------------------------