Speech recognition with ESP32-S2?

Barakv75
Posts: 4
Joined: Fri Apr 16, 2021 4:54 am

Speech recognition with ESP32-S2?

Postby Barakv75 » Mon Apr 19, 2021 6:48 am

Is it possible to use Speech recognition with ESP32-S2 ?
Is there any example?

User avatar
Vader_Mester
Posts: 300
Joined: Tue Dec 05, 2017 8:28 pm
Location: Hungary
Contact:

Re: Speech recognition with ESP32-S2?

Postby Vader_Mester » Mon Apr 19, 2021 1:50 pm

Barakv75 wrote:
Mon Apr 19, 2021 6:48 am
Is it possible to use Speech recognition with ESP32-S2 ?
Is there any example?
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);
}

Barakv75
Posts: 4
Joined: Fri Apr 16, 2021 4:54 am

Re: Speech recognition with ESP32-S2?

Postby Barakv75 » Tue Apr 20, 2021 10:49 am

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: Majestic-12 [Bot] and 103 guests