Is it possible to use Speech recognition with ESP32-S2 ?
Is there any example?
Speech recognition with ESP32-S2?
- Vader_Mester
- Posts: 300
- Joined: Tue Dec 05, 2017 8:28 pm
- Location: Hungary
- Contact:
Re: Speech recognition with ESP32-S2?
Hello.
Yes, it is integrated into ESP-ADF. Read dis:
https://docs.espressif.com/projects/esp ... index.html
You should read this page, as it contains the official documentation of what Espressig provides, so you can properly set it up and start using it.
Code: Select all
task_t coffeeTask()
{
while(atWork){
if(!xStreamBufferIsEmpty(mug)){
coffeeDrink(mug);
} else {
xTaskCreate(sBrew, "brew", 9000, &mug, 1, NULL);
xSemaphoreTake(sCoffeeRdy, portMAX_DELAY);
}
}
vTaskDelete(NULL);
}
Re: Speech recognition with ESP32-S2?
Thanks,
The compilation failed and I'm getting linker error:
undefined reference to `esp_sr_wakenet5_quantized'
I believe it's regarding the extern variables in rec_eng_helper.c file.
Have any idea why?
Thanks
The compilation failed and I'm getting linker error:
undefined reference to `esp_sr_wakenet5_quantized'
I believe it's regarding the extern variables in rec_eng_helper.c file.
Have any idea why?
Thanks
Who is online
Users browsing this forum: Google [Bot] and 179 guests