HonestQiao

Results 24 comments of HonestQiao

![Image](https://github.com/user-attachments/assets/badf428b-1e87-483d-9945-15b781ae0d9a) 翻对话历史记录,找到了一些案发现场的情况

> 感谢,按钮的实现,我看好像是自己写了个独立的task来检测,这个是不是用 iot button 的 custom 方式,更好呢? > > 你看一下这个案例:https://github.com/78/xiaozhi-esp32/blob/main/main/boards/sensecap-watcher/sensecap_watcher.cc#L110 现在优化处理了

更新了。 抱歉,之另外一个目录已经有了,拷贝过来的时候忘记添加了。

这样试试,看看会如何,添加两行红色的,注意去掉注释

阿里语音合成支持韩语:https://help.aliyun.com/zh/isi/developer-reference/overview-of-speech-synthesis?spm=a2c4g.11186623.help-menu-30413.d_3_1_0_0.4f6f1d63syAdYn#5186fe1abb7ag

> 音量加到最大不应该是100吗?看代码好像直接变为0了 update

> 这个是算官方提交还是第三方提交呢 第三方提交的。

> esp_codec_dev_set_in_channel_gain 如果取消注释,就不能正常跑了。

验证了一下,可行。 ES7210: ``` codec->base.set_mic_gain = es7210_set_gain; codec->base.set_mic_channel_gain = es7210_set_channel_gain; ``` ES7243E: ``` codec->base.set_mic_gain = es7243e_set_gain; ``` 除了ES7210有set_mic_channel_gain,其他的如ES7243E都只有set_mic_gain。 所以这个地方的增益,应该用esp_codec_dev_set_in_gain()。

> I was able to compile micropython using the code from: #11869 (andrewleech:esp32c6) I rebase it to: #13775 (DvdGiessen:esp32_idf52) > > and fix ADC calibration and a problem with UART...