Skip to content

MicroPython I2C library and example for Gravity: Offline Language Learning Voice Recognition Sensor

Notifications You must be signed in to change notification settings

Lupin3000/Micropython-I2C-DF2301Q

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MicroPython I2C library and example for Gravity: Offline Language Learning Voice Recognition Sensor

This repository contains the MicroPython I2C library for the Gravity: Offline Language Learning Voice Recognition Sensor from DFRobot, as well as a very simple example of how to use it. The original repository from DFRobot is located here (for Arduino and Raspberry Pi).

Why this repository?

The original version of DFRobot uses Python serial (UART) and Python SMBus (I2C), which are not compatible with MicroPython. Also, I was not so happy with the Python code style/quality. That's why I created this version.

Prerequisite

DF2301Q.jpg

Installation

Clone this repository to your local computer.

# clone repository
$ git clone https://github.com/Lupin3000/Micropython-I2C-DF2301Q.git

# change into local repository folder
$ cd Micropython-I2C-DF2301Q/

You can optionally install other helpful Python packages.

  • esptool (to flash the MicroPython firmware to the ESP32)
  • rshell (to establish a serial connection between the local computer and the ESP32 and to transfer data)
  • micropython-esp32-stubs (to facilitate local development, for example: code completion)
# install python packages (optional)
$ pip install -r requirements.txt

Connect the sensor to the ESP32. Make sure that you have set the communication mode on the sensor to I2C and use the correct connections (ESP GPIO's/Sensor interface)! Only then connect the ESP32 to your local computer via USB.

In the example main.py, the GPIOs pins 21 (SDA) and 22 (SCL) are used. However, you can adapt these to your needs at any time.

Then start the serial connection and load the example and the library onto the ESP32 device.

# start rshell connection
$ rshell -p /dev/cu.usbserial-0001

# upload files and folder
/YOUR/LOCAL/PATH> cp main.py /pyboard/
/YOUR/LOCAL/PATH> cp -r lib/ /pyboard/

The example device/path /dev/cu.usbserial-0001 could be different for you! Please adapt before your execute the commands!

Usage

# start the Python REPL
/YOUR/LOCAL/PATH> repl

Now press the keys CTRL + d on your local device, to trigger the soft-reset of the ESP32. If there are no errors, you should see the string "Speak your commands:" in the terminal after a very short time.

Entering REPL. Use Control-X to exit.
>
MicroPython v1.20.0 on 2023-04-26; ESP32 module with ESP32
Type "help()" for more information.
>>> 
>>> 
MPY: soft reboot
Speak your commands:

Now speak the wake-up word and few commands. Here few examples:

COMMAND ID: 2
COMMAND ID: 49
COMMAND ID: 84

Additional information:

About

MicroPython I2C library and example for Gravity: Offline Language Learning Voice Recognition Sensor

Topics

Resources

Stars

Watchers

Forks

Languages