KWS Speech Recognition Module
Welcome to the KWS Speech Recognition Module! Here is the directory of all related tutorials.
Tutorial List
- Jetson Nano Serial Communication
- Jetson Serial Communication
- PC Serial Communication
- ROS2 RViz2 Visualization
- Chinese and English Recognition Word Firmware Download and Burn
- Raspberry Pi Serial Communication
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}")
