Auteur
CETECH | Dernière modification 16/09/2025 par CETECH
Air controller, DFRobot Air-Controller_with_Wio_Terminal__DFRobot_GestureFace_Sensor_aircontroller.JPG Technique
A slick GUI interface that:
You must check out PCBWAY for ordering PCBs online for cheap!
You get 10 good-quality PCBs manufactured and shipped to your doorstep for cheap. You will also get a discount on shipping on your first order. Upload your Gerber files onto PCBWAY to get them manufactured with good quality and quick turnaround time. PCBWay now could provide a complete product solution, from design to enclosure production. Check out their online Gerber viewer function. With reward points, you can get free stuff from their gift shop. Also, check out this useful blog on PCBWay Plugin for KiCad from here. Using this plugin, you can directly order PCBs in just one click after completing your design in KiCad.
The Wio Terminal is a full-featured embedded development board designed for rapid prototyping and IoT.
The Gravity: Offline Edge AI Gesture & Face Detection Sensor (SEN0626) by DFRobot is a compact vision module designed for real-time gesture recognition and multi-person detection—without relying on cloud connectivity
Unlike traditional vision sensors or cloud AI APIs, the SEN0626 handles all computations locally with zero data transmission. This makes it perfect for environments like public kiosks, hospital automation, classroom counters, or smart bathrooms where privacy and simplicity are critical.
You can install it in ceilings, desks, or embedded enclosures, and it consistently outputs gesture ID, score, and face coordinates for real-time UI feedback.
Explore technical docs, examples, and buy the sensor on the DFRobot product page
Connect the Gesture & Face Sensor to Wio Terminal via I2C using a Grove cable:
The DFRobot Gesture & Face Detection Sensor features:
#include "DFRobot_GestureFaceDetection.h"
#include <TFT_eSPI.h>
DFRobot_GestureFaceDetection_I2C gfd(0x72); // I2C Address
TFT_eSPI tft;
void setup() {
Serial.begin(115200);
Wire.begin();
tft.begin();
tft.setRotation(3);
tft.fillScreen(TFT_BLACK);
gfd.begin();
}
void loop() {
if (gfd.getFaceNumber() > 0) {
int faceX = gfd.getFaceLocationX();
int faceY = gfd.getFaceLocationY();
int score = gfd.getFaceScore();
int gesture = gfd.getGestureType();
int gScore = gfd.getGestureScore();
// Display values using drawString() and drawRect()
} else {
// No face detected: show idle state
}
delay(500);
}
📌 You can customize the layout and colors using drawRect, drawString, and setTextColor() from TFT_eSPI.
DFRobot Gesture/Face Sensor Arduino Library
This project combines edge AI sensing with embedded GUI design to produce a real-time, privacy-safe control interface. Whether you're building a smart kiosk or experimenting with ambient UX, Wio Terminal and the SEN0626 sensor offer a perfect starting point.
en none 0 Published
Vous avez entré un nom de page invalide, avec un ou plusieurs caractères suivants :
< > @ ~ : * € £ ` + = / \ | [ ] { } ; ? #