#How to make a guidance system

1 messages · Page 1 of 1 (latest)

gilded warren
#

How do I code a guidance system in python #1019793296740073614

crimson sierra
#

Please provide more information about your problem

gilded warren
gilded warren
crimson sierra
# gilded warren Basically self driving/self flying

Dude it will be a long rigorous coding journey to create this type of software. Start your project in GitHub and paste information about your project in #826138466101755995 so interested people can contribute in it.

crimson sierra
crimson sierra
gilded warren
crimson sierra
gilded warren
crimson sierra
#

Chat gpt will provide you a step by step guide on how you can create this software and what would be requirements for it.

safe locust
#

just saying that you want to make a guidance system for drones and rockets is quite vague , the idea is great dont get me wrong , but this is not exactly a problem , first you will have to figure out how you are gonna program it , i am assumming when u say for drones it will be built into drones so for that you will have to know what kind of drones exist and how they can be programmed if they can that is , we dont know if we can use python or we are gonna require some other low level programming language then I assume u will have to mount a camera or some way your code / program can understand surroudings and then maybe come up with a path finding algorithm and then lastly you will also have to write the code to like control the drone itself

#

this is a very complex project which will include learning a lot of stuff which ranges from basics of programming to complex hardware stuff .

gilded bison
#

How to make a guidance system

elder veldt
gilded warren
gilded warren
elder veldt
#

What is your current level of programming?

#

Is your goal to simulate a drone? Or to program a hardware drone? If the later, you will need another language than Python (or Java for that matter): most likely you will need to use C or C++ (maybe some assembly depending of if you wanna speed up some process). You will need to learned about microcontrollers and everything embedded programming related

gilded warren
gilded warren
elder veldt
#

Ok, for a simulation I guess you could do it in Python, but I would still recommend using C/C++.

#

Then you can run your simulation on hardware simulator such as QEMU

#

If you wanna just build a UI, Python probably okay, but for the backend and all the mechanics, C++ will be the way to go

gilded warren
elder veldt
gilded warren
elder veldt
elder veldt
#

You just have to add ANSI code to your print statement

elder veldt
#

;compile cpp


#include <stdio.h>

int main()
{
    printf( "\033[1;31mHello\033[0m");
    return 0;
}
pliant shellBOT
#
Program Output
Hello
elder veldt
#

You can’t see it in discord, but I added red color around the hello (if you try it in your terminal, you will see the Hello printed in red

#

A guide or this^

gilded warren
#

Morning