Skip to content

Commit 68a7c75

Browse files
committed
Add remote outlet project
1 parent 7ce98bb commit 68a7c75

16 files changed

Lines changed: 12901 additions & 12784 deletions

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Personal Project Website
2+
3+
## Building the site
4+
5+
Uses `jekyll` project to build a static website
6+
7+
once Jekyll is installed, run this to create the site:
8+
9+
```
10+
jekyll build
11+
```
12+
13+
Can also run this to test out the changes locally. Will be hosted locally at `localhost:4000`
14+
```
15+
jekyll serve
16+
```

_includes/footer.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11

22
<div id="footer">
3-
Site written and designed by Scott Stack
43
</div>

_includes/header.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
Projects
142142
</a>
143143
<ul>
144+
<li class="submenu_item"><a href="/projects/remote_outlet.html">Remote Switched Outlet</a></li>
144145
<li class="submenu_item"><a href="/projects/power_supply.html">Bench Power Supply</a></li>
145146
<li class="submenu_item"><a href="/projects/pcb_clock.html">PCB Alarm Clock</a></li>
146147
<li class="submenu_item"><a href="/projects/night_vision.html">Night Vision Goggles</a></li>

home.css

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@
33

44
#intro_text {
55
padding-right : 15px;
6-
}
7-
8-
#intro_text p {
9-
padding-left : 10px;
106
font-size : 20px;
11-
text-indent : 4em;
7+
padding-left : 10px;
8+
text-indent : 0em;
129
line-height : 1.5em;
1310
font-style : italic;
1411
margin-bottom : 40px;

index.html

Lines changed: 5 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -19,50 +19,13 @@
1919
<table class="main_table">
2020
<tr>
2121
<td id="intro_text" colspan="2">
22+
Hey there, I made this site really just to document and show off some fun projects I've done throughout the years. Some of them are pretty old at this point, so don't judge me too harshly :)
23+
Feel free to check out my github too which may have some more projects: <a href="https://github.com/spstack">https://github.com/spstack</a>. Thanks!
24+
<p>
25+
- Scott
26+
</p>
2227
</td>
2328
</tr>
24-
25-
26-
<!-- quick link box and news feed box row -->
27-
<tr>
28-
29-
<!--button panel -->
30-
<td class="button_panel">
31-
<table>
32-
<tr>
33-
<td>
34-
<div class="link_button" id="linkedin_button" onmousedown="quickLinkDown('linkedin_button')">
35-
<a href="http://www.linkedin.com/pub/scott-stack/45/6ab/997/">Linkedin Profile</a>
36-
</div>
37-
</td>
38-
</tr>
39-
<tr>
40-
<td>
41-
<div class="link_button" id="projects_button" onmousedown="quickLinkDown('projects_button')">
42-
<a href="./projects.html">List of all Projects</a>
43-
</div>
44-
</td>
45-
</tr>
46-
</table>
47-
</td>
48-
49-
<!--News feed -->
50-
<td class="news_feed">
51-
<h2>What's New</h2>
52-
<ul>
53-
54-
<li><span class="news_timestamp">4/19/2019 - </span><a href="projects/power_supply.html">Bench Power Supply</a> Added a page for my new custom clear-cased bench power supply!</li>
55-
<li><span class="news_timestamp">7/15/2018 - </span><a href="projects/pcb_clock.html">PCB Alarm Clock</a> Added project page for my custom PCB art alarm clock!</li>
56-
<li><span class="news_timestamp">2/13/2018 - </span><a href="projects/night_vision.html">Night Vision</a> Added <strong><span style="color:green">night vision</span></strong> goggles project to the projects section!</li>
57-
<li><span class="news_timestamp">1/20/2018 - </span><a href="projects.html">Moar Projects!</a> Added a few more projects to the list including a motorized desk and an IR recorder. Also added a video to the internet controlled robot page. </li>
58-
<li><span class="news_timestamp">5/14/2016 - </span><a href="projects/N64_mod.html">N64 Mod</a> project page added. I modded my N64 a while ago, but finally got around to putting up details on the website</li>
59-
<li><span class="news_timestamp">1/11/2015 - </span><a href="projects/internet_robot.html">Mini internet controlled robot</a> project added. Tiny little robot that you can drive through the internet.</li>
60-
<li><span class="news_timestamp">2/8/2014 - </span><a href="projects/home_automation.html">home automation project page</a>. My first attempt at some home automation. Includes light control, security webcam, some very basic temperature monitoring, and TV control.</li>
61-
<!--<li><span class="news_timestamp">xx/xx/xxxx - </span>*Insert Entry Here*</li>-->
62-
</ul>
63-
</td>
64-
65-
</tr>
6629
</table>
6730
</div>
6831

projects.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@
1616

1717
<div class="main_content">
1818
<table id="projects_table">
19+
20+
<!-- LightLink -->
21+
<tr>
22+
<td class="descr_table_entry">
23+
<a class="project_title" href="projects/remote_outlet.html">Lightlink Remote Outlet</a>
24+
<p class="project_description">This is a little device that essentially allows you to change the location of a switched power outlet. The idea is
25+
you plug one device into the switched outlet then another into the outlet you want to control, and the device's power states are linked over a wireless connection.
26+
I made this mainly because the locations of the switched outlets in my current apartment make no sense, and I still like to be able to use the light switches to control lamps.
27+
</p>
28+
</td>
29+
<td>
30+
<a href="projects/remote_outlet.html"><img class="project_image" src="projects/remote_outlet_media/lightlink_completed_enclosures.jpg"/></a>
31+
</td>
32+
</tr>
1933

2034
<!-- Lab Power Supply -->
2135
<tr>
Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
1-
Name,Description,Quantity,Datasheet
2-
CAP_0805,,1,
3-
CAP_0805,,1,
4-
CAP_0805,,1,
5-
CAP_0805,,1,
6-
CAP_0805,,1,
7-
CAP_0805,,1,
8-
CAP_0805,,1,
9-
CAP_0805,,1,
10-
CAP_0805,,1,
11-
CAP_0805,,1,https://www.sparkfun.com/products/11405
12-
20mm_7seg_LED,7 segment LED display,1,
13-
DIODE_0805,,1,
14-
DB2X20700L,,1,https://media.digikey.com/pdf/Data%20Sheets/Panasonic%20Electronic%20Components/DB2X20700L.pdf
15-
DIODE_0805,,1,
16-
644456-6,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
17-
1-644456-1,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
18-
644456-2,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
19-
644456-2,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
20-
IHLP-2020BZ-11,Inductor for power supply,1,http://www.vishay.com/docs/34261/ihlp2020bz11.pdf
21-
DMN2004DMK_n-fet,N channel FET for LED/speaker load switch,1,https://www.diodes.com/assets/Datasheets/ds30937.pdf
22-
DMN2004DMK_n-fet,,1,https://www.diodes.com/assets/Datasheets/ds30937.pdf
23-
MOSFETP,,1,https://www.diodes.com/assets/Datasheets/DMG2305UX.pdf
24-
RES_0805,,1,
25-
RES_0805,,1,
26-
RES_0805,,1,
27-
RES_0805,,1,
28-
RES_0805,,1,
29-
RES_0805,,1,
30-
RES_0805,,1,
31-
RES_0805,,1,
32-
RES_0805,,1,
33-
RES_0805,,1,
34-
RES_0805,,1,
35-
RES_0805,,1,
36-
RES_0805,,1,
37-
RES_0805,,1,
38-
RES_0805,,1,
39-
RES_0805,,1,
40-
RES_0805,,1,
41-
RES_0805,,1,
42-
RES_0805,,1,
43-
RES_0805,,1,
44-
RES_0805,,1,
45-
RES_0805,,1,
46-
RES_0805,,1,
47-
RES_0805,,1,
48-
RES_0805,,1,
49-
RES_0805,,1,
50-
RES_0805,,1,
51-
RES_0805,,1,
52-
RES_0805,,1,
53-
RES_0805,,1,
54-
RES_0805,,1,
55-
RES_0805,,1,
56-
RES_0805,,1,
57-
RES_0805,,1,
58-
RES_0805,,1,
59-
RES_0805,,1,
60-
BP06,,1,http://datasheets.diptrace.com/switches/BP_Dip_Switch.pdf
61-
MCP73831,,1,https://cdn.sparkfun.com/assets/learn_tutorials/6/9/5/MCP738312.pdf
62-
PIC18F46J50,,1,http://datasheets.diptrace.com/microchip/39760d.pdf
63-
TLV62569DBVR,,1,http://www.ti.com/lit/ds/symlink/tlv62569.pdf
64-
LM358D,,1,
65-
SPARKFUN 32k CRYSTAL,Crystal,1,https://www.sparkfun.com/products/540
66-
,,64,
1+
Name,Description,Quantity,Datasheet
2+
CAP_0805,,1,
3+
CAP_0805,,1,
4+
CAP_0805,,1,
5+
CAP_0805,,1,
6+
CAP_0805,,1,
7+
CAP_0805,,1,
8+
CAP_0805,,1,
9+
CAP_0805,,1,
10+
CAP_0805,,1,
11+
CAP_0805,,1,https://www.sparkfun.com/products/11405
12+
20mm_7seg_LED,7 segment LED display,1,
13+
DIODE_0805,,1,
14+
DB2X20700L,,1,https://media.digikey.com/pdf/Data%20Sheets/Panasonic%20Electronic%20Components/DB2X20700L.pdf
15+
DIODE_0805,,1,
16+
644456-6,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
17+
1-644456-1,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
18+
644456-2,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
19+
644456-2,,1,http://datasheets.diptrace.com/con_headers/ENG_CD_644456_D2.pdf
20+
IHLP-2020BZ-11,Inductor for power supply,1,http://www.vishay.com/docs/34261/ihlp2020bz11.pdf
21+
DMN2004DMK_n-fet,N channel FET for LED/speaker load switch,1,https://www.diodes.com/assets/Datasheets/ds30937.pdf
22+
DMN2004DMK_n-fet,,1,https://www.diodes.com/assets/Datasheets/ds30937.pdf
23+
MOSFETP,,1,https://www.diodes.com/assets/Datasheets/DMG2305UX.pdf
24+
RES_0805,,1,
25+
RES_0805,,1,
26+
RES_0805,,1,
27+
RES_0805,,1,
28+
RES_0805,,1,
29+
RES_0805,,1,
30+
RES_0805,,1,
31+
RES_0805,,1,
32+
RES_0805,,1,
33+
RES_0805,,1,
34+
RES_0805,,1,
35+
RES_0805,,1,
36+
RES_0805,,1,
37+
RES_0805,,1,
38+
RES_0805,,1,
39+
RES_0805,,1,
40+
RES_0805,,1,
41+
RES_0805,,1,
42+
RES_0805,,1,
43+
RES_0805,,1,
44+
RES_0805,,1,
45+
RES_0805,,1,
46+
RES_0805,,1,
47+
RES_0805,,1,
48+
RES_0805,,1,
49+
RES_0805,,1,
50+
RES_0805,,1,
51+
RES_0805,,1,
52+
RES_0805,,1,
53+
RES_0805,,1,
54+
RES_0805,,1,
55+
RES_0805,,1,
56+
RES_0805,,1,
57+
RES_0805,,1,
58+
RES_0805,,1,
59+
RES_0805,,1,
60+
BP06,,1,http://datasheets.diptrace.com/switches/BP_Dip_Switch.pdf
61+
MCP73831,,1,https://cdn.sparkfun.com/assets/learn_tutorials/6/9/5/MCP738312.pdf
62+
PIC18F46J50,,1,http://datasheets.diptrace.com/microchip/39760d.pdf
63+
TLV62569DBVR,,1,http://www.ti.com/lit/ds/symlink/tlv62569.pdf
64+
LM358D,,1,
65+
SPARKFUN 32k CRYSTAL,Crystal,1,https://www.sparkfun.com/products/540
66+
,,64,

0 commit comments

Comments
 (0)