Shamsudheen
Published © MIT

Motion Mirror

Motion Mirror is a playful interactive signage concept where an animated character on screen mimics your face movement

BeginnerFull instructions provided289
Motion Mirror

Things used in this project

Hardware components

Seeed Studio XIAO ESP32S3 Sense
Seeed Studio XIAO ESP32S3 Sense
×1
Grove Vision AI Module V2
Seeed Studio Grove Vision AI Module V2
×1

Software apps and online services

rive

Story

Read more

Code

ESP32S3

Arduino
To send them data over a serial port from Grove Vision AI V2
#include <Seeed_Arduino_SSCMA.h>
SSCMA Infer;

void setup()
{
    Serial.begin(9600);
    Infer.begin();
}

void loop()
{
    if (!Infer.invoke())
    {
        auto boxes = Infer.boxes();
        if (boxes.size() > 0)
        {
            int x = boxes[0].x;
            int y = boxes[0].y;

            Serial.print("X: ");
            Serial.print(x);
            Serial.print(" | Y: ");
            Serial.println(y);
        }
    }

    delayMicroseconds(10);
}

Credits

Shamsudheen
3 projects • 2 followers

Comments