-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (75 loc) · 3.57 KB
/
about.html
File metadata and controls
92 lines (75 loc) · 3.57 KB
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
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<title>Ramudroid</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script type="text/javascript" src="scripts/u4vl.js"></script>
<link rel=stylesheet href="css/webrtcpagestyle.css">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://www.google.com/jsapi"></script>
<script src="https://jquery-csv.googlecode.com/files/jquery.csv-0.71.js"></script>
<script type="text/javascript" src="scripts/loaddatacsv.js"></script>
<link rel=stylesheet href="css/ar.css">
</head>
<body>
<!-- top header -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">RamuDroid</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Remote Navigation</a></li>
<li class="active"><a href="#">About</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="#">.</a></li>
</ul>
</div>
</nav>
<!-- camera streaming from Rpi -->
<div id="container">
<div class="row">
<div class="col-sm-4" style="width:420px">
<div id="map" style="height: 420px; width: 400px; margin-top: 54px;"></div>
</div>
<div class="col-sm-6">
<div class="overlayWrapper">
<br/><br/><br/>
<p>Ramudroid is a bot to clean roads and outdoor environments. It is battery-powered. For brains, there's a Raspberry Pi on board. It's got wireless connectivity. There's a camera for real-time image sensing of the environment</p>
<img src= "img/ramudroid_icon.png"/>
<h3> m2mcommunication </h3>
<p>
<ul>
<li>REST web services
Communication between the web client , mobile client , cloud server , robots and other control points is primarily on REST over Internet or Wifi.
</li>
<li>
For the mobile clients in vicinity if the robot they may even connevt via BLE ( blue tooth low enery ).
</li>
<li>
Live streaming and image analysis
</li>
<li>
Rpi core control unit
</li>
<li>
Web Console for Ramu Droid
</li>
<li>
Wiring Pi
GPIO access library written in C for the BCM2835 used in the Raspberry Pi
</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>