🧪 New tutorials are being published — build from robot arms to sensors step by step
Skip to content

KWS Speech Recognition Module

Buy in Store

Welcome to the KWS Speech Recognition Module! Here is the directory of all related tutorials.

Tutorial List


Official Repository Example

Juxi Technology provides open-source code for the KWS speech recognition module: GitHub

Python Serial Communication

The Python example in the repository demonstrates how to communicate with the KWS module over serial to receive wake-word recognition results:

python
import serial
ser = serial.Serial('/dev/ttyUSB0', 115200)
while True:
    if ser.in_waiting:
        data = ser.readline().decode().strip()
        print(f"Recognition result: {data}")