Difference between revisions of "S17: Sky Knight"
Proj user6 (talk | contribs) (→Introduction) |
Proj user6 (talk | contribs) (→Introduction) |
||
Line 26: | Line 26: | ||
== Introduction == | == Introduction == | ||
− | |||
Revision as of 01:46, 25 May 2017
Contents
Grading Criteria
- How well is Software & Hardware Design described?
- How well can this report be used to reproduce this project?
- Code Quality
- Overall Report Quality:
- Software Block Diagrams
- Hardware Block Diagrams
- Schematic Quality
- Quality of technical challenges and solutions adopted.
Sky Knight
Abstract
We have implemented a quad-copter capable of self-sustained flight. Our quad-copter has 4 arms with propeller and motors on each. The propellers generate thrust that lifts the quad-copter against the gravity. ESCs(Electronic Speed Control ) are used to control the motor rotation speed depending on the PWM provided by SJOne board. We have implemented the self-stabilizing technique using PID algorithm. Android Application is also developed to provide user interface to control the motion of our quad-copter. The communication between android application and SJOne board is done using Bluetooth.
Objectives
The main objective of this project is to implement the following.
- Design and build an efficient hardware so that it is easy to mount on Quadcopter.
- Interface the BNO055 sensor with LPC1758 to get pitch, roll and yaw angles.
- Develop Android Application to control the motion of the quadcopter and communicate with SJOne via Bluetooth.
- Analyze PID algorithms and tune the PID algorithm that will stabilize the flight of Quadcopter.
Introduction
Team Members & Responsibilities
Schedule
Sr. No | Start Date | End Date | Task | Status | Actual Completion Date |
---|---|---|---|---|---|
1 | 2/21/2017 | 2/28/2017 |
|
Completed | 2/28/2017 |
2 | 2/28/2017 | 3/14/2017 |
|
Completed | 3/14/2017 |
3 | 3/14/2017 | 3/28/2017 |
|
Completed | 3/29/2017 |
4 | 3/14/2017 | 4/11/2017 |
|
Completed | 4/15/2017 |
5 | 4/11/2017 | 4/25/2017 |
|
Completed | 4/25/2017 |
6 | 4/15/2017 | 4/25/2017 |
|
Completed | 4/18/2017 |
7 | 4/25/2017 | 5/01/2017 |
|
Completed | 5/01/2017 |
8 | 5/2/2017 | 5/8/2017 |
|
In Progress | |
9 | 5/9/2017 | 5/25/2017 |
|
Parts List & Cost
Give a simple list of the cost of your project broken down by components. Do not write long stories here.
Qty | Description | Manufacturer | Part Number | Total Cost |
---|---|---|---|---|
1 | FPV 4-Axis Quadcopter Frame kit w/ Protective Guard | UFO | $41.00 | |
1 | Adafruit 9-DOF Sensor | Adafruit | BNO055 | $39.97 |
1 | Quadcopter Power Distribution Board | Hobby King | $10.00 | |
1 | PCB | PCBWay | $27.00 | |
4 | OPTO Brushless ESC | ARRIS 2-6S 30AMP | $53.00 | |
4 | 6045 Carbon Nylon Propellers | Gemfan | $4.00 | |
1 | SJOne Board | Preet | LPC1758 SJSU Board | $80.00 |
1 | x2204 2300kv Brushless Motors - set of 4 | SunnySky | SNS-X2204S-KV2300 | $63.00 |
2 | 4000mAh 3S 30C Lipo Battery Pack | Turnigy | T4000.3S.30 | $22.00 |
1 | 50W 5A Balancer Charger | Hobbyking | ECO6 | $19.00 |
1 | 105W 15V/7A DC power supply | Hobbyking | 9052000023-3 | $15.00 |
1 | 3.5mm Gold Connectors | Polymax | $2.00 | |
1 | Long Nylon Threaded Spacers | $6.00 | ||
1 | Test Environment Frame for testing | Home Depot | $15.00 | |
Total Cost (excluding shipping and taxes) | $397.00 |
Design & Implementation
Hardware Design
For making of quadcopter a SJOne board is used on which flight controlling software was implemented. This board reads the value from the BNO055 sensor and generates the PWM (Pulse Width Modulation) pulse to drive the four motors. In this project we used four 2300KV brushless servo motor are used. 2300 KV means that for each one volt applied to motor it will produce an RPM of 2300. A 11.6v LIPO battery was used to provide the power supply to the motor's via a power distribution board.
We have used 4 OPTO Brushless ESC of 30 Amp, to make the motor spin based on the PWM provided by the SJOne board. The ESC is capable of delivering 30 A of continuous current to the motors. Before using the ESC we need to calibrate the ESC by providing the max and min PWM that it is gonna function in. The Wires connected from the ESC to motor are able to support high Supply of Current. A Separate board is design, which act as an interface between the SJOne board to ESC & Bluetooth. An external 5V Supply was used to provide the power to the SJOne Board , which in-turn provided power to the bluetooth module.
A 4 axis UFO with propeller guard is being used for this project. The frame and the guards were mainly used considering our requirement and safety reasons. We have also used a BNO055 9 DOF Adafruit sensor, which is been interfaced with the SJOne. An I2C data communication takes place between the Sensor and the LPC Board , to send the data from the sensor to the board whose values are been used to stabilize the flight of the Quadcopter.
Motors
We have implemented Brushless motors for our quadcopter. They are much more powerful and energy efficient, unlike DC motors. The kV rating on the motor indicates how many RPM the motor can rotate for the given number of volts. Brushless motors work by producing magnetic fields to produce electric charges. The speed of the spinning motor is controlled by an ESC. In our Quadcopter we have 2 motors on the diagonals moving in clockwise while the other two in anti-clockwise.
Electronic Speed Controller (ESC)
We have used ESC (Electronic Speed Control) to control the motor rotation speed also to set its direction (clockwise or anti-clockwise ).The ESC will control the PWM values provided to it by LPC 1758 board. Our ESC runs at about 400 Hz with pulse widths that range from 3.12ms to 6.25 ms. 3.12 ms turns off the motor input while 6.25 ms makes the motor run at max speed. The OPTO brushless ESC is programmable, and has several different parameters for the user to configure.
Sensor
We are using BNO055 sensor to measure the orientation of our quad-copter.This sensor is 9-axis absolute orientation sensor. It has an advanced tri-axial 16 bit gyroscope, a versatile, leading edge tri-axial 14 bit accelerometer and a full performance geomagnetic sensor. We get fused sensor data output of Quaternion, Euler angles, Rotation vector,Linear acceleration, Gravity, Heading. We have interfaced BNO055 sensor with SJOne board using I2C. We are getting Pitch, Roll and Yaw angle with 16 bit precision and giving these values as input to our PID controller to maintain the stable orientation.
SJOne Flight Controller
The SJOne board is programmed and configured to be the flight controller of the quadcopter. The RC receiver, the sensor, and the ESC are all hooked up to the board. Each of these devices are actively working together and are controlled by the board. The receiver takes input from the RC and outputs it into the SJOne board. The board will process the requested PWM and will use this information to control the ESC. It will also process the requested angle of pitch and roll. The sensor readings will be used to process both the requested angle from the RC, and to process the flight stabilization calculations. This microcontroller controls every aspect required for the quadcopter to fly. Every action must first go through the SJOne board. FreeRTOS is extensively used on the board. Many critical actions such as remote control and flight stabilization are set up as tasks. The board will determine the priority given to each task.
Android Application
Android Application is used to control the quad-copter. We have created the the simple user interface.
This application allows user to start and stop the quad-copter. We have configured two activities in our application. In first activity that is in first page we have one button that connects to the Bluetooth and once Bluetooth connection is established , application is navigated to second page. In this second page, we have provided users the buttons to control the quad-copter. Total 9 buttons are provided to user. The names and the functionality of each button is as follows:
1) RESET : This button starts the quad-copter.
2) STOP : This button helps user to stop the quad-copter slowly.
3) FULLSTOP : This button stops the SJOne board. Thus, immediately stops the quad-copter.
4) F : This button moves the quad-copter in the Front direction.
5) L : This button moves the quad-copter in the Left direction.
6) B : This button moves the quad-copter in the Back direction.
7) R : This button moves the quad-copter in the Right direction.
8) Throttle P : To increase the throttle. This increases the PWM value by 0.02 when pressed.
9) Throttle M : To decrease the throttle. This decreases the PWM value by 0.02 when pressed.
PCB Design
A Printed Circuit Board or PCB is a plate or board used for placing the different elements that conform an electrical circuit that contains the electrical interconnections between them.The most simple printed circuit boards are the ones that contain copper tracks or interconnects only on one of its surfaces. These kinds of boards are known as 1 layer printed circuit board or 1 layer PCB.The most common PCB's manufactured today are the ones that contain 2 layers, that is, you can find interconnects in both surfaces of the board. However, depending on the physical complexity of the design ( PCB layout ), the boards can be manufactured with 8 or more layers. Ours is 1 layer PCB. Our PCB design consisted of Silkscreen and Soldermask on the top side and copper layer on the bottom side.
We made a PCB to connect all the ESC's signals pins and also provide VCC and GND to the peripherals.Designing PCB in Eagle is a 2 step process. First, design a schematic and then use the designed schematic for board representation.Eagle's board and Schematic work hand-in-hand.
Circuit Schematic or Schematic The Schematic is the representation of the electronic system using abstract, graphic symbols. Drawing a Schematic is always the first step of designing a PCB. Usually, PCB design software contains separate tools for Schematic and PCB design. Often a PCB is represented by multiple Schematic pages separated by functions, like power domain, analog signal domain, inputs/outputs.You can use the libraries provided by Adafruit or Eagle to get the components to your schematic.
Layer Overview PCB composition is all about layering one material over another. The thickest, the middle part of the board is an insulating substrate (usually FR4). On either side of that is a thin layer of copper, where our electric signals pass through. To insulate and protect the copper layers, we cover them with a thin layer of lacquer-like solder mask, which is what gives the PCB color (green, red, blue, etc.). Finally, to top it all off, we add a layer of ink-like silkscreen, which can add text and logos to the PCB.
Checking for Error
- The first check is to make sure you’ve actually routed all of the nets in your schematic. To do this, hit the RATSNEST icon.
- Once you’re done routing there’s just one more check to be made: the design rule check (DRC).To do this you need to download DRC Library. You should expect “DRC: No errors.”
Generating Gerbers Gerber files – note the plurality – each describes single layers of the PCB. One Gerber might describe the silkscreen, while another defines where the top copper is. In all, we’ll generate seven Gerber files to send to the fab house.
- CAM Processor - we "Process Job" to create the Gerber files.
- Picking a PCB Manufacturer - We picked PCBWay for the manufacturing of our PCB.
- Delivering the Gerbers - We generated GTL, GBL, GTS, GBS, GTO, GBO and the TXT files and send them this.
Hardware Interface
In this section, you can describe how your hardware communicates, such as which BUSes used. You can discuss your driver implementation here, such that the Software Design section is isolated to talk about high level workings rather than inner working of your project.
Software Design
PID Controller
The important part of the project was to make the Quadcopter stable, for which we have used PID algorithm. PID stands for Proportional, Integral and Derivative algorithm. PID is a closed loop system which computes the values of the error based on the values obtained from the Sensor. We had an initial Set-point value in our code, which as obvious would be the ideal error values that we expect from our Quadcopter. For computation of the P, we used the difference of the measured value and the Set-point value. Then for the computation of D,
Implementation
This section includes implementation, but again, not the details, just the high level. For example, you can list the steps it takes to communicate over a sensor, or the steps needed to write a page of memory onto SPI Flash. You can include sub-sections for each of your component implementation.
Testing & Technical Challenges
Describe the challenges of your project. What advise would you give yourself or someone else if your project can be started from scratch again? Make a smooth transition to testing section and described what it took to test your project.
Include sub-sections that list out a problem and solution, such as:
My Issue #1
Discuss the issue and resolution.
Conclusion
Conclude your project here. You can recap your testing and problems. You should address the "so what" part here to indicate what you ultimately learnt from this project. How has this project increased your knowledge?
Project Video
On Field Testing Initial Phase https://youtu.be/lQm-Qdt1894
Quad-copter Rope Tied Testing https://youtu.be/-ZVfokUFFPo
PID Testing using Seesaw stand: https://youtu.be/ftO13CeKirc
Quad-copter Stand Mount Testing https://youtu.be/Me5hdb_TkGU
Quad-copter Hover Video https://youtu.be/R3oFnWLibLk
Final Flight: https://youtu.be/scjI6HGl9Ao
Quad-copter Back Motion Control Video https://youtu.be/y9nNN9IHd-w
Quad-copter Backward and Right Motion Video https://youtu.be/z-7jj8FxK8c
Project Source Code
References
Acknowledgement
Any acknowledgement that you may wish to provide can be included here.
References Used
List any references used in project.
Appendix
You can list the references you used.