-
Notifications
You must be signed in to change notification settings - Fork 0
/
development.php
executable file
·82 lines (82 loc) · 5.33 KB
/
development.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php include __DIR__.'/includes/header.php'; ?>
<div class="splash">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>The Development Process</h1>
<p>It's all in the mind, you know?</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">
<h1 class="panel-title">Initial Idea</h1>
</div>
<div class="panel-body">
<p>The goal of LifeSweeper is to develop a remote controlled minesweeping vehicle to replace the human beings that do it manually. Our major focus is on portability and ease of use.
We noticed that there are no other alternatives to what we are doing and feel that we should take the initiative and develop this for the world.</p>
<p>Our story starts with Mike watching TV. The show is called "Inside Combat Rescue." In the episode,
American soliders in Afghanistan are on a search and rescue mission. The mission takes them to an active minefield.
Unfortunately, the team is stuck waiting for ground forces to sweep for mines before the helicopter can land.
Time is critical when a soldier is bleeding out. This is where we step in.</p>
</div>
</div>
<i class="fa fa-arrow-down fa-5x"></i>
<div class="panel panel-default">
<div class="panel-heading">
<h1 class="panel-title">First Thoughts</h1>
</div>
<div class="panel-body">
<p>Our first few designs looked like a lunch box with treads. We had tossed around the idea of mounting the metal detector under the body of the car vs right in front of it. Here is the original 3D mockup without treads.</p>
<img class="img-responsive" src="/images/firstcar.jpg" alt="First 3D mockup of car">
<p>Originally, the intent was to control the car through an Android application. The idea was shelved due to time constraints. Instead we opted for web based control.</p>
<p>The marking mechanism was originally designed around the use of spray paint. Using different types of paints, we could achieve different goals, such as glow in the dark and infrared.</p>
</div>
</div>
<i class="fa fa-arrow-down fa-5x"></i>
<div class="panel panel-default">
<div class="panel-heading">
<h1 class="panel-title">Revisting the Idea</h1>
</div>
<div class="panel-body">
<p></p>
<img class="img-responsive" src="/images/newmodel.jpg" alt="final 3D mockup of car">
<p>We took inspiration from real life and developed the boom arm to mimic the action of manually sweeping mines. The boom arm will hold the metal detector in front of the vehicle.</p>
<img class="img-responsive rotate180" src="/images/boomarm.jpg" alt="Boom Arm">
<p>The marking mechanism got scrapped for a more mechanized system. Using a motor attached to the boom arm, glow sticks are dropped where the metal detector is positioned.</p>
<img class="img-responsive" src="/images/markingmechanism.jpg" alt="Marking Mechanism">
</div>
</div>
<i class="fa fa-arrow-down fa-5x"></i>
<div class="panel panel-default">
<div class="panel-heading">
<h1 class="panel-title">Car Construction</h1>
</div>
<div class="panel-body">
<p>There are 2 drills/Motors, each controlling a half of the vehicle. Everything is powered using the 18V batteries that came with them. Power regulators and DC to MicroUSB adapters are used to step down and convert the power to the other devices.</p>
<img class="img-responsive" src="/images/motors.jpg" alt="Car body with motors">
<p>Controlling the forward and reverse of the motors was a major challange for us. Fortunately, Mike discovered an integrated circuit called an H Bridge. This allows us to keep a one directional circuit while implementing a two directional circuit through use of a toggle switch.</p>
<img class="img-responsive" src="/images/hbridge.jpg" alt="H Bridge testing with Arduino Uno">
<p>Using the Arduino Yun as an access point, we can connect the Raspberry Pi and all of our devices. The Yun will also host the web page we will be using to control the vehicle with.</p>
<img class="img-responsive" src="/images/yunandpi.jpg" alt="Arduino Yun and Raspberry Pi">
<p>The motors will be controlled through a webpage using a REST API, we opted for Javascript. Javascript allows us to use keyboard actions to send commands to the Yun. </p>
</div>
</div>
<i class="fa fa-arrow-down fa-5x"></i>
<div class="panel panel-default">
<div class="panel-heading">
<h1 class="panel-title">Final moments</h1>
</div>
<div class="panel-body">
<p>Last few things before car is finished and goes on to project page</p>
<img class="img-responsive" src="/images/working2.jpg" alt="Working on car">
</div>
</div>
</div>
</div>
</div>
<?php require __DIR__.'/includes/footer.php'; ?>