forked from robosocnith/robosocnith.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
122 lines (121 loc) · 5.63 KB
/
blog.html
File metadata and controls
122 lines (121 loc) · 5.63 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/blog/blog.css" />
</head>
<body>
<nav class="shift">
<div class="branding">
<figure>
<img class="logo" src="img/robosoc.png">
</figure>
<div class="brand">
<h3><span>ROBOTICS SOCIETY</span><br/>NIT-Hamirpur</h3>
</div>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="activities.html">Activities</a>
<a href="projects.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="members.html">Members</a>
</div>
<img class="ham-burg" src="img/hamburger-icon-white.png" width=60px>
</nav>
<section class="banner">
<div class="banner-box">
<h1 id="sec-style">BLOGS</h1>
<h3 id="sec-style2">Robotics Society NITH</h3>
</div>
</section>
<div class="container">
<section class="info">
<h3>Start Writing, no Matter what...</h3>
<p>Could you think what could be more important than working on a stuff? Well, the answer seems to be simple, yet many don't bring it into practice. And the answer is "Documentation". It would not only help you in future but would also help others who are going to work on the same with you or in the future. So work and write it out...</p>
</section>
<section class="blog-grid">
<div>
<figure>
<img src="img/blog/cnc.jpg" width="200px" height="200px">
<figcaption>
<h4>Introduction to CNC Machines</h4>
<p>CNC: Computer and Numeric Control,Conventionally, an operator decides and adjusts various machines parameters like feed, depth of cut etc. depending on type of job, and controls the slide movements by hand. </p>
</figcaption>
</figure>
<button onclick="">Know More</button>
</div>
<div>
<figure>
<img src="img/blog/cnc.jpg" width="200px" height="200px">
<figcaption>
<h4>Introduction to Biorobotics</h4>
<p>As we all know that robotics is a branch that deals with concept of creating machines that can operate autonomously but biorobotics is a subfield of robotics which deals with making of robots that emulate or simulate living biological organisms mechanically or even</p>
</figcaption>
</figure>
<button onclick="">Know More</button>
</div>
<div>
<figure>
<img src="img/blog/cnc.jpg" width="200px" height="200px">
<figcaption>
<h4>Publishing and subscribing a topic in ROS</h4>
<p>In previous tutorial we learnt how to create catkin workspaces and packages inside these workspaces. In this article we will be discussing about how to publish and subscribe a topic. So lets get started!!!</p>
</figcaption>
</figure>
<button onclick="">Know More</button>
</div>
<div>
<figure>
<img src="img/blog/cnc.jpg" width="200px" height="200px">
<figcaption>
<h4>Creating Catkin package in ROS</h4>
<p>The ROS packages are the basic unit of the ROS system. We can create the ROS package, build it and release it to the public. Here we will be using catkin build systems to build our ROS packages. A build system is responsible for generating 'targets' </p>
</figcaption>
</figure>
<button onclick="">Know More</button>
</div>
<div>
<figure>
<img src="img/blog/cnc.jpg" width="200px" height="200px">
<figcaption>
<h4>Robotics vs Mechatronics</h4>
<p>Well origin of Robotics is not known precisely. Throughout history its been effort of human to create a machine that can mimic living beings like human itself autonomously in all fields with much more efficiency.</p>
</figcaption>
</figure>
<button onclick="">Know More</button>
</div>
<div>
<figure>
<img src="img/blog/cnc.jpg" width="200px" height="200px">
<figcaption>
<h4>Robot Operating System: ROS</h4>
<p>ROS is the acronym for Robot Operating System. Beginners often confuse it as the Operating System for robots like Ubuntu, Windows for pc. ROS is not an operating system for robots. It is a meta-operating system.</p>
</figcaption>
</figure>
<button onclick="">Know More</button>
</div>
</section>
</div>
<footer>
<img src="img/robosoc.png" width=150px>
<div>
<ul>
<a><li>Top</li></a>
<li>Activities</li>
<li>Projects</li>
<li>Sponsor Us</li>
</ul>
<ul>
<li>Blog</li>
<li>People</li>
<li>Gallery</li>
<a><li></li></a>
</ul>
</div>
</footer>
</body>
</html>