-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make application independent of (but still compatible with) MAVProxy #26
Comments
This would help support a wider range users including those using PX4 #23 |
One idea is to have a TCP / UDP connection come into the server, parse the MAVLink there and then push the parsed data over the websocket. If I make use of python3 the process can be asynchronous. |
This is really great! Standalone and/or PX4 support would open up a lot of ideas with this. Great work! |
I have pushed a minimal stand alone functionality with f0c946c . |
Failed to use config file at /home/flight/MAVCesium/app/mavcesium_default.ini : ConfigParser instance has no attribute 'read_file' |
Thanks for testing. I'll see if I can reproduce. Did you clone the repo directly or install with MAVProxy? |
Figured it out. Meant to remove it sorry. It's working like a charm! |
Great! Connected to software in the loop? Basically there are two ways forward to extend the stand alone functionality:
Because 1 already exists in some form I'm going to push on with option 2 and see how hard it it to build a GCS in a browser... |
Yea, actually forwarded from my PC to the server. Option 2 sounds good. I was looking at a way to build a clone of dji's flighthub today for mavlink based craft but it less advanced then mavcesium! they seem to support 4 craft. Did u ever get to work on the video stuff? |
This is great, it would be really nice to take a config file as an argument, so we can launch multiple copies. |
For multi-aircraft viewing? By forgoing the single drone limitation of MAVProxy it will be pretty simple to add any number of aircraft into the MAVCesium world to view at the same time. Doing one connection per aircraft would be pretty simple, or a single connection and change the drone model depending on the system ID. |
No, so you can run multiple copies of mavcesium on the same computer, ie one for SITL and one for the flight controller. If that can be done within a single instance of mavcesium, cool. |
Understood. In that case you would probably want the two separate instances of the server rather than the shared world I was getting at. |
@SamuelDudley Amazing work! But how can I run it in offline mode? |
Currently MAVProxy is used to generate the JSON messages which drive the display. MAVProxy is also used for communicating back to the autopilot, WP and fence management.
Ideally this application could be made stand alone to interact with the autopilot directly.
The text was updated successfully, but these errors were encountered: