-
Notifications
You must be signed in to change notification settings - Fork 0
/
boards.html
47 lines (41 loc) · 2.1 KB
/
boards.html
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
<!DOCTYPE html>
<!-- Guy Scamp -->
<HTML>
<!-- This is the head opening tag -->
<HEAD>
<!-- This is the title -->
<TITLE>ROBOTICS AND EMBEDDED SYSTEMS</TITLE>
<!-- This is the head close tag -->
</HEAD>
<!-- This is the body open tag (I used a specific color) -->
<BODY BGCOLOR="FFFFFF">
<!-- This is a header with text and open and close tags -->
<H1>Robotics and Embedded Systems</H1>
<!-- This is horizontal rule tag to seperate elements -->
<HR>
<!-- This is a medium header -->
<H2>Program Objectives</H2>
<!-- this is our paragraph open tag -->
<p>
1. Design and complete robotic and embedded systems solutions that address real-world situations and challenges.
<!-- this is a line break tag to keep our text organized -->
<BR>
2. Demonstrate embedded microprocessor system skills such as microcontroller selection digital logic design, schematic creation, printed circuit board layout and construction electromagnetic compatibility design and manufacturing design.
<!-- this is a line break tag to keep our text organized -->
<BR>
3. Develop vision and sensing systems for use in robotic applications.
<!-- this is a line break tag to keep our text organized -->
<BR>
4. Integrate transducers, actuators, feedback and other mechanical systems into platforms.
<!-- this is a line break tag to keep our text organized -->
<BR>
5. Apply examples of human and autonomous control systems into robotic platforms.
<!-- this is a line break tag to keep our text organized -->
<BR>
6. Implement artificial intelligence and data systems into robotic platforms.
<!-- this is our paragraph close tag -->
</p>
<!-- This is horizontal rule tag to seperate elements -->
<HR>
</BODY>
</HTML>