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

KWS Voice Interaction Module

Buy in Store

Overview

KWS (Keyword Spotting) voice interaction module supports Chinese/English recognition-word firmware flash. Communicates via serial with hosts like Jetson and Raspberry Pi, with ROS2 RViz2 visualization.

Key features:

  • CN/EN recognition-word firmware (download & burn)
  • Serial communication (PC/Jetson/Pi/Jetson Nano)
  • ROS2 + RViz2 visualization
  • Open-source repo with Python serial examples
  • 100% offline recognition, no internet needed (privacy + low latency)
  • 95% accuracy in normal environments, response within 300ms

  • Up to 100 custom voice commands, customizable wake words
  • Low power: average current <50mA

Specifications

CategorySpec
InterfaceSerial (UART)
RecognitionCN/EN wake words
PlatformsJetson, Nano, Raspberry Pi, PC
VisualizationROS2 RViz2
FirmwareOpen-source burning tool

Quick Start

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

Tutorials

Support