mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			680 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			680 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| esphome:
 | |
|   on_boot:
 | |
|     then:
 | |
|       - speaker.mute_on:
 | |
|       - speaker.mute_off:
 | |
|       - if:
 | |
|           condition: speaker.is_stopped
 | |
|           then:
 | |
|             - speaker.play: [0, 1, 2, 3]
 | |
|       - speaker.volume_set: 0.9
 | |
|       - if:
 | |
|           condition: speaker.is_playing
 | |
|           then:
 | |
|             - speaker.finish:
 | |
|       - speaker.stop:
 | |
| 
 | |
| i2s_audio:
 | |
|   i2s_lrclk_pin: ${i2s_bclk_pin}
 | |
|   i2s_bclk_pin: ${i2s_lrclk_pin}
 | |
|   i2s_mclk_pin: ${i2s_mclk_pin}
 | |
| 
 | |
| audio_dac:
 | |
|   - platform: aic3204
 | |
|     i2c_id: i2c_bus
 | |
|     id: internal_dac
 | |
| 
 | |
| speaker:
 | |
|   - platform: i2s_audio
 | |
|     id: speaker_with_audio_dac_id
 | |
|     audio_dac: internal_dac
 | |
|     dac_type: external
 | |
|     i2s_dout_pin: ${i2s_dout_pin}
 |