Ryze Robotics Dron and Python SDK
Tl;DR
More tinkering the real world.
Intro
As software is cheap, if plants are not for you
maybe drones/electronic/robotics are?
Claude x Python
sometime ago i was using python to control my dji tello dron, do you understand the logic i built? create a wiki.md with ur understandingI also extracted the documentation for claude:
uv init
uv add kreuzbergYou can skip Kreuzberg container, just:
for f in Chapter*.pdf; do
uvx kreuzberg extract "$f" > "${f%.pdf}.txt"
doneOnce the context is ready, its about creating a FRD.md and let CC split the work in few phases:
uv run main.pyThis is all based on OSS libraries, so you wont need ever again the official app which is no longer in the google play store.
Computer Vision
After a quick test, I thought about adding face detection capabilities:
uv run face_detection_poc.pySame thing we learnt with the pi, using the CV2 library (executed at your laptop, not the dron)
Conclusions
Wouldnt it be nice to do a come back to electrical engineering?
The level of abstraction that there is in such a drone so that by pressing one key, that goes to one command and goes to…somewhere
and that somewhere makes the motors do something in particular to rotate, acelerate…
Not gonna lie to you
i have a dji tello dron and succesfully got a python script that uses its SDK to control it. Here is the python code and the documentation I used to do so. The android official apps is no longer valid, so i want to use flutter to build a crossplatform one that does precisely what my python script does. Can we do a flutter-version.md with all the features and clarifications?# 1. Verify you're on Tello's Wi-Fi
iwconfig # or check Network settings
# 2. Ping the drone
ping 192.168.10.1
# Test with netcat (simple UDP)
echo -n "command" | nc -u -w1 192.168.10.1 8889This is happening already
sudo snap install flutter --clasic
#git init && git add . && git commit -m "Initial commit: Starting flutter dji tello dron" && gh repo create dron-tello-flutter --private --source=. --remote=origin --push
#uv init
#uv add -r requirements.txt
#uv sync
#cd sample-pyscipe
uv run main.py
#make run #requires .env.localWhat I learnt
Want this DFY?
f off
I mean, here you go:

