Added work from my other class repositories before deletion

This commit is contained in:
2017-11-29 10:28:24 -08:00
parent cb0b5f4d25
commit 5ea24c81b5
198 changed files with 739603 additions and 0 deletions

View File

@@ -0,0 +1,135 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>CS 290 - Week 2 Assignment</title>
</head>
<body>
<table>
<caption>Comparison of Common Microcontroller Specifications</caption>
<thead>
<tr>
<th></th>
<th>Max Clock</th>
<th>Num I/O</th>
<th>Flash</th>
<th>Ram</th>
<th>EEPROM</th>
</tr>
</thead>
<tbody>
<tr>
<th>Atmel ATMEGA328P</th>
<td>16 MHz</td>
<td>23</td>
<td>32 KB</td>
<td>2 KB</td>
<td>1 KB</td>
</tr>
<tr>
<th>Atmel ATXMEGA256A3U</th>
<td>32 MHz</td>
<td>50</td>
<td>256 KB</td>
<td>16 KB</td>
<td>4 KB</td>
</tr>
<tr>
<th>Atmel ATSAMD21J18</th>
<td>48 MHz</td>
<td>52</td>
<td>256 KB</td>
<td>32 KB</td>
<td>N/A</td>
</tr>
<tr>
<th>TI MSP430F2131</th>
<td>16 MHz</td>
<td>16</td>
<td>8 KB</td>
<td>256 B</td>
<td>N/A</td>
</tr>
<tr>
<th>Microchip PIC16F1825</th>
<td>32 MHz</td>
<td>11</td>
<td>14 KB</td>
<td>1 KB</td>
<td>256 B</td>
</tr>
<tfoot>
<tr>
<td colspan=4>Important</td>
<td colspan=2>Also Important</td>
</tr>
</tfoot>
</tbody>
</table>
<dl>
<dt>Projects I've Done With Microcontrollers</dt>
<dd>OSU Robotics Club Mars Rover Team System Control Boards</dd>
<dd>Four Axis Stepper Motion Controller</dd>
<dd>E-Paper Business Card (In-Progress)</dd>
<dt>Embedded Languages I've Used</dt>
<dd>Embedded C</dd>
<dd>Embedded C++</dd>
<dt>Projects Where I've Fried a Microntroller in Development</dt>
<dd>Mars Rover Team Control Boards</dd>
<dd>Four Axis Motion Controller REV 1</dd>
<dd>75% Of My Microcontroller Based Projects</dd>
</dl>
<div class="outer-content">
<div class="inner-content">
<body><p>Needs More Micro</p></body>
</div>
</div>
<div class="post-div">
<fieldset>
<legend>Form for POST Submission</legend>
<form action="http://classes.engr.oregonstate.edu/eecs/winter2015/cs290-400/tools/class-content/form_tests/check_request.php" method="post">
<fieldset>
<p>Enter Text Here:<input type="text" name="text_input">
</fieldset>
<fieldset>
<p>Enter A Number Here:<input type="number" name="numerical_input">
</fieldset>
<fieldset>
<p>Enter A Password Here:<input type="password" name="password_input">
</fieldset>
<fieldset>
<p>Choose your favorite candy:</p>
<input type="radio" name="candy" value="Snickers" checked>Snickers<br>
<input type="radio" name="candy" value="Skittles">Skittles<br>
<input type="radio" name="candy" value="Mentos">Mentos<br>
<input type="submit">
</fieldset>
</form>
</fieldset>
</div>
<div class="get-div">
<fieldset>
<legend>Form for GET Submission</legend>
<form action="http://classes.engr.oregonstate.edu/eecs/winter2015/cs290-400/tools/class-content/form_tests/check_request.php" method="get">
<fieldset>
<p>Enter Text Here:<input type="text" name="text_input">
</fieldset>
<fieldset>
<p>Enter A Number Here:<input type="number" name="numerical_input">
</fieldset>
<fieldset>
<p>Enter A Password Here:<input type="password" name="password_input">
</fieldset>
<fieldset>
<p>Choose your favorite candy:</p>
<input type="radio" name="candy" value="Snickers" checked>Snickers<br>
<input type="radio" name="candy" value="Skittles">Skittles<br>
<input type="radio" name="candy" value="Mentos">Mentos<br>
<input type="submit">
</fieldset>
</form>
</fieldset>
</div>
</body>
</html>

View File

@@ -0,0 +1,58 @@
table>caption{
font-weight: bold;
}
table, th, td {
border-collapse: collapse;
border: 1px solid black;
text-align: left;
padding: 5px;
}
tbody>tr>th{
font-weight: normal;
font-style: italic;
}
tbody>tr:nth-of-type(even) {
background-color: lightsalmon;
}
tbody>tr:nth-of-type(odd) {
background-color: lightgreen;
}
.inner-content {
width: 75%;
margin-left: auto;
margin-right: auto;
background-color: lightblue;
text-align: center;
}
.outer-content {
float: left;
width: 75%;
background-color: pink;
margin-top: 20px;
}
.post-div{
margin-top: 100px;
clear: both;
}
.get-div{
margin-top: 20px;
}
form>fieldset{
margin: 5px;
}
input[type="submit"]{
margin-left: 5px;
margin-top: 15px;
}