An open API service indexing awesome lists of open source software.

https://github.com/jzucker2/simple-sounds

Simple repo for simple sounds used in other projects
https://github.com/jzucker2/simple-sounds

Last synced: 3 months ago
JSON representation

Simple repo for simple sounds used in other projects

Awesome Lists containing this project

README

        

# simple-sounds

Simple repo for hosting simple sounds.

Inspired by https://github.com/jesserockz/esphome-components

```yaml
speaker:
- platform: ...
id: my_speaker
...

file:
- id: my_file
file: my_file.wav
- id: my_remote_wav
file: https://example.com/my_file.wav

button:
- platform: template
name: Play my file
on_press:
- lambda: id(my_speaker).play(id(my_file), sizeof(id(my_file)));
```