mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
Added work from my other class repositories before deletion
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user