Closed yuanfangcn closed 1 month ago
ESP_ADF支持ESP32S3-BOX,您可以参考pipeline_bt_sink, 在 menuconfig > Audio Hal
中选择ESP32-S3-BOX即可
那 esp32经典蓝牙发送端 是用 哪个例程?连接蓝牙耳机,耳机出声音
用这个demopipeline_bt_source
了解了。 那么: examples\player\pipeline_a2dp_source_stream 和 pipeline_bt_source 有何异同? 另外 examples\player\pipeline_a2dp_sink_stream 和 pipeline_bt_sink 有何异同?
pipeline_a2dp_xxx 使用a2dp_stream_init
做初始化,在配置上更加灵活,play_bt_music_example中的esp_bt_controller
和esp_bluedroid
都能够进行是否选择使用;
pipeline_bt_xxx 使用bluetooth_service_create_stream
做初始化, 直接将bt和上面选择性使用的函数都直接激活完成。
当前ESP32S3-BOX能够WIFI连接和播放mp3(声音通过喇叭),现在怎样添加 连接蓝牙耳机,或者蓝牙音响 的功能?