Looks cool! Feel free to submit this to https://hnarcade.com :)
Fly Drones from the Browser
11–19 of 19 posts
Re: Fly Drones from the Browser
#12Cool project man! It's well designed and well made also can you explain how did you arrange all the required libraries and stuff before beginning the work?
Re: Fly Drones from the Browser
#13Very cool, I'm working on a similar project but using MCP as the flight input layer. Would love to dm and discuss more about how you built it or collaborate.
Re: Fly Drones from the Browser
#14Looks promising, but what's the signup wall for? Also, I guess I can't try this until I get an FPV controller/game controller that I can connect to my computer?
Major turn off for me as well. Instant No.
Re: Fly Drones from the Browser
#15We could see this in Ukraine versus Russia; and more recently USA versus Iran. I understand that technology won't change now, but it is a "disruptive technology" indeed. It's like this is the real skynet from Terminator. Soon AI controlled. I don't like this really. (AI is also disruptive of course.)
Re: Fly Drones from the Browser
#16Re: Fly Drones from the Browser
#17I am a bit scared of drones. They have had a huge impact. We could see this in Ukraine versus Russia; and more recently USA versus Iran. I understand that technology won't change now, but it is a "disruptive technology" indeed. It's like this is the real skynet from Terminator. Soon AI controlled. I don't like this really. (AI is also disruptive of course.)
Re: Fly Drones from the Browser
#18Very cool, I'm working on a similar project but using MCP as the flight input layer. Would love to dm and discuss more about how you built it or collaborate.
I was looking into the MCP route too, and found some libraries abstracting mavlink for this use case (there’s at least one white paper documenting failure modes of LLMs trying to issue mavlink commands without an abstraction), but realized that autopilot like PX4 exists. My use case was more about autonomous flight, and it seemed better to just set waypoints and put some guards on other inputs. When paired with QGrou…
Re: Fly Drones from the Browser
#19Earlier quoted context omitted.
I was looking into the MCP route too, and found some libraries abstracting mavlink for this use case (there’s at least one white paper documenting failure modes of LLMs trying to issue mavlink commands without an abstraction), but realized that autopilot like PX4 exists. My use case was more about autonomous flight, and it seemed better to just set waypoints and put some guards on other inputs. When paired with QGrou…
Interesting. I've been building around that MCP abstraction and have had some early success flying in Cosys-Airsim (and Gazebo before that): https://github.com/jakedcmp/droneserver . I am starting to realize I need to break apart the MCP interface from all the other pieces of the stack for cleaner architecture but thats pending work. My flow goes like this: LLM -> MCP tools -> droneserver -> MAVSDK/MAVLink -> PX4/Ard…
The video/image perception is why I started looking into this domain in the first place, but I haven't gotten there yet. I hadn't seen Cosys-Airsim! I bet it could work in tandem w/ QGroundControl just like Gazebo does. Might be looking into that :)