microclawup — AI-powered ESP32 GPIO controller in MicroPython #18863
Replies: 2 comments 1 reply
-
VID20260225012508.mp4 |
Beta Was this translation helpful? Give feedback.
-
|
I don't kno if my feedback will be productivce - i haven't tested it but i used to R&D some solutions aggregating simple PLC functionality like ON/OFF, time/date scheduling with speech processing to txt (on PC) (I could not use any AI agent)- and then execute command on ESP. If You want develop your project in future conder:
in My case (projekt) it would look like this: Me speaking : " hey Kettle Man , turn kettle on at 17 PM " after processing could directly create task : "asyncio.create_task(schedule( kettle , 'one shot', hrs=17, mins=range(0, 60, 2), times=1)) As authentication (password) I used identification based on voice (Person) recognition so nobody exept me ( as defined user) could use it. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone! I wanted to share a project I built called microclawup🦞.
The idea is simple — you send a natural language message on Telegram, Groq AI converts it to a hardware command, and your ESP32 executes it and replies back.
"turn on the light" -> LED ON | Pin 2
"blink 5 times" -> Blink x5 | Pin 2
"pin 4 high" -> GPIO HIGH | Pin 4
It also understands Hindi and other languages since Groq AI handles the translation.
Features:
Inspired by zclaw (a C-based ESP32 AI agent) — microclawup is a MicroPython alternative focused on being beginner friendly.
Tested on ESP32
GitHub: https://github.com/kritishmohapatra/microclawup
Would love feedback from the MicroPython community. Happy to answer any questions!
Beta Was this translation helpful? Give feedback.
All reactions