0

I am a team member which is developing autonomous fixed-wing. I am using ros to control fixed-wing. In mission script there are callback functions which is giving latitude, longtitude, altitude, compass_angle, velocity, battery_level

In local computer I ve got a ground station which shows callback function values on indicator by using Tkinter and PIL

I am getting values from firebase using firebase_admin but It is not real-time, values reach ground-computer 3-4 seconds late.

So I want to connect remote computer , reach mission_script.py and get values on callback functions. Is it possible to do if it is How can I do it?

2
  • Have you considered storing values on txt files (on a server ?) with the first computer and accessing it via the second computer ? Commented Jan 27, 2023 at 10:28
  • 1
    Use ZeroMQ to send the data directly from the device to groundstation. Since it is brokerless, it is very fast en fault tolerant. Commented Jan 27, 2023 at 10:33

1 Answer 1

1

Thanks to Alex's comment I used ZMQ and get real time data flow.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.