emrp2022:start
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
emrp2022:start [2023/03/19 05:39] – osama-haiyl-attallah.attallah | emrp2022:start [2023/03/19 07:07] (current) – osama-haiyl-attallah.attallah | ||
---|---|---|---|
Line 625: | Line 625: | ||
{{: | {{: | ||
+ | |||
+ | |||
Figure 36: Vehicle Setup in QGroundControl | Figure 36: Vehicle Setup in QGroundControl | ||
Line 648: | Line 650: | ||
{{: | {{: | ||
+ | |||
+ | |||
Figure 37: drone controls and their respective movements | Figure 37: drone controls and their respective movements | ||
+ | |||
source: https:// | source: https:// | ||
Line 672: | Line 677: | ||
{{: | {{: | ||
+ | |||
+ | |||
Figure 38: Graupner transmitter confirming reciever binding | Figure 38: Graupner transmitter confirming reciever binding | ||
Line 678: | Line 685: | ||
{{: | {{: | ||
+ | |||
+ | |||
Figure 39: Radio calibration in QGroundControl | Figure 39: Radio calibration in QGroundControl | ||
Line 700: | Line 709: | ||
- Brake mode: Immediately stops the drone | - Brake mode: Immediately stops the drone | ||
- | Try to setup a logical and easy-to-configure choice of flight modes, as it will be necessary to remember how you mapped them later during flight. The current set flight mode appears on the main screen of the ground control software. | + | Try to make a logical and easy-to-configure choice of flight modes, as it will be necessary to remember how you mapped them later during flight. The current set flight mode appears on the main screen of the ground control software. |
Note while configuring the remote to the Qgroundcontrol: | Note while configuring the remote to the Qgroundcontrol: | ||
Line 715: | Line 724: | ||
- Throttle friction | - Throttle friction | ||
- | - Throttle ratchet | + | - Throttle ratchet |
Line 737: | Line 746: | ||
==Setup power and ESC calibration== | ==Setup power and ESC calibration== | ||
- | Before setting up the power source, some essentials have to be provided: | + | Before setting up the power source, some considerations: |
- | Battery parameters: | ||
- | - Voltage: for 4S1P (4 LiPo cells), 14.8 V | + | ESC Output capability: max 17.4 V |
- | - Capacity: 5000mAh | + | Check the specifications of the battery: |
- | + | ||
- | - Discharge rate: 30+/60C | + | |
- | + | ||
- | ESC parameters: | + | |
- | - Output capability: max 17.4 V | ||
- | Motor parameters: | + | {{:emrp2022: |
- | - Maximum current (A): | ||
- | - Maximum voltage (V): | ||
- | |||
- | - KV values: 960 rpm | ||
- | |||
- | RPM= Kv * Voltage | ||
- | |||
- | for example: LBP2860, Maximum Current is80A, Maximum Voltage is 17V and 3400MV. | ||
- | |||
- | Check the specifications of the battery: | ||
- | |||
- | |||
- | {{: | ||
Figure 40: 4S LiPo 14.8 V 5 Ah battery | Figure 40: 4S LiPo 14.8 V 5 Ah battery | ||
Line 784: | Line 774: | ||
{{: | {{: | ||
+ | |||
+ | |||
Figure 41: Power setup and ESC calibration in QGroundControl | Figure 41: Power setup and ESC calibration in QGroundControl | ||
Line 797: | Line 789: | ||
==Safety warnings== | ==Safety warnings== | ||
- | In the safety section, | ||
+ | {{: | ||
+ | |||
+ | Figure 42: Safety section in QGroundControl | ||
+ | |||
+ | In the safety section, you have the option to include extra measures, such as ground station failsafe to control drone behavior if it lost RC control or ground statio control, in addition to a GeoFence, where you can assign visual boundaries to a physical locations for the drone to not cross. Most importantly, | ||
+ | |||
+ | Make to check the Tuning section in Vehicle Setup to adjust flight characteristics! This is very important to test the sensitivity and response of the drone to transmitter commands | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Figure 43: Tuning options | ||
Line 809: | Line 811: | ||
{{youtube> | {{youtube> | ||
- | =====Programming | + | =====Programming, Control |
- | Drones can be programmed through a software development kit (SDK) or application programming interface (API) in their packages. Most of the drones that are programmable already come with their own firmware. Specialized functions or applications can then be be developed with a programming language like Python, or the SDK if already provided. Dronekit is an API that can be used to interface the drone by sending MAVlink commands to the drone. Dronekit comes readily equipped with intelligent flight path planning and other autonomous functions All complex tasks must be done from the source of a different framework, such as MAVSDK or ROS (robot operating system), which is a group of modular frameworks, wherein sensors publish data to subscribers. ROS and ROS 2 are different systems with the same concept. MavROS is a direct connection interface that pushes all the info from MAVlink into a ROS format. | + | Drones can be programmed through a software development kit (SDK) or application programming interface (API) in their packages. Most of the drones that are programmable already come with their own firmware. Specialized functions or applications can then be be developed with a programming language like Python, or the SDK if already provided. |
+ | Dronekit is an API that can be used to interface the drone by sending MAVlink commands to the drone. Dronekit comes readily equipped with intelligent flight path planning and other autonomous functions All complex tasks must be done from the source of a different framework, such as MAVSDK or ROS (robot operating system), which is a group of modular frameworks, wherein sensors publish data to subscribers. There is also ROS 2, but ROS and ROS 2 are different systems with the same concept. MavROS is a direct connection interface that pushes all the info from MAVlink into a ROS format. Drones have a the vast potential in remote sensing because of aerial photographic and surveillance capabilites, | ||
- | For image processing, you can' | + | However, there are some limitations that can hinder drones. First is the restriction on the weight and area available on the drone surface necessary to compute alogrithms with few hardware resources. If adequate processing power is needed, at most a battery with more cells i.e. bigger voltage and weight are also required. Additionally, |
+ | A prominent example of object classification applications is the identification and distinction between dogs and wolves, this can be useful in, for example farms or ranches where cattle lives, where the operating drone spots an invading wolf and would enact a mission program to chase and scare it away. Another instance is the rescue of lost pets, or identification of drowning or endangered animals, to help rescue them. By programming in Python and applying convolutional neural networks, this can be setup with the following: | ||
- | =====Conclusion===== | ||
+ | Data/Photos selection: a dataset of different dog and wolf breeds is assembled | ||
+ | |||
+ | Data augmentation: | ||
+ | |||
+ | Preparing and testing the model: training convolutional models | ||
+ | |||
+ | Using Data with convolutional neural networks | ||
+ | |||
+ | Evaluation of results: based on classiication accuracy | ||
+ | |||
+ | For more details: https:// | ||
+ | |||
+ | |||
+ | Another capability is the appliation of drones in agriculture and environmental monitoring, where drones equipped with cameras can enhance precision agriculture performance, | ||
+ | |||
+ | source: https:// | ||
+ | |||
+ | |||
+ | =====Conclusion===== | ||
+ | Going through this tutorial, you should have gained enough knowledge about certain components of drones, the step-by-step assembly of a DJI F550 Flamewheel hexacopter, ground control software, calibration of different parts of the drone, some safety precautions to stick to when working with drones, got to know briefly about the programming of drones and their promising potential in remote sensing applications such as for domestic animals, wildlife diffentiation, | ||
=====Supplementary===== | =====Supplementary===== | ||
Line 828: | Line 851: | ||
{{ : | {{ : | ||
< | < | ||
- | + | ||
+ | | ||
=== Inverted Pendulum with PID === | === Inverted Pendulum with PID === | ||
emrp2022/start.1679200793.txt.gz · Last modified: 2023/03/19 05:39 by osama-haiyl-attallah.attallah