-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmart-mirror.html
96 lines (95 loc) · 4.87 KB
/
smart-mirror.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title>Project | Smart mirror</title>
</head>
<body>
<header>
<div class="header" style="visibility: visible;">
<a href="index.html">
<img src="pictures/logo.png">
</a>
</div>
<nav>
<ul>
<a href="index.html#aboutMe">
<li class="navButton">About me</li>
</a>
<a href="index.html#projects">
<li class="navButton">Projects</li>
</a>
<a href="index.html#contactMe">
<li class="navButton">Contact me</li>
</a>
</ul>
</nav>
</header>
<main>
<a href="/">
<div style="left: 0;" class="cloudWrap">
<div class="cloudBase">
<div></div>
</div>
<div class="cloudBaseShadow">
<div></div>
</div>
<div class="lightningBolt"></div>
</div>
</a>
<h1>Smart mirror</h1>
<div style="display:flex;">
<p class="projectDesc">
I wanted to build a smart mirror because i needed a mirror in my room and wanted to make it special.
My goal was that the mirror would make my everyday life easier. <br><br>
The mirror should display things like my calendar, my tasks and what the weather looks like.
Due some troubles, my mirror cannot yet be used as I would like to use it.
</p>
<img src="pictures/mirror.png" style="float: right; width: 30%;">
</div>
<div style="display: flex;">
<div style="float: left; width: 50%; padding-right: 2.5%;">
<p>
First i tried to write down all the things i need for the smart mirror and what they cost.
I was also looking for tutorials on how to build a smart mirror.
I decided to work with the tutorial from <a href="https://glancr.de/smart-mirror-selbst-bauen/" class="link" target="_blank">glancr.de</a>.<br><br>
It took me some time to get all the items I needed, but I had to get some specific things, as you can see on the list.<br>
When I had got all the things, I started to put them together. <br><br>The biggest problem I had was gluing the police mirror to the frame with the silicone.
I then installed the mirror on my shelf and can now control it via my laptop or iPad.
</p><br>
<h2>Next steps:</h2>
<p>
The next steps I want to do is to let the mirror boot up in the morning and shut down in the evening automatically.<br><br>
Because the mirror sometimes switches itself off and on again automatically, I still have to deal with why it does this.
I also want to clean the edges and straighten the glass.
</p><br>
<h2>Updates:</h2>
<p style="text-indent:-3.5em;margin-left:3.5em;">
<span style="font-weight:bold;">17.08.2022:</span> Searching for the problem that was causing the mirror to turn on and off erratically, I found out that the heat was causing the problem.
</p>
</div>
<div class="hardware">
<h2>Hardware:</h2>
<p>
- <a href="https://www.amazon.de/gp/product/B01CD5VC92/ref=ppx_od_dt_b_asin_title_s01?ie=UTF8&psc=1" target="_blank">Raspberry Pi 3 Model B</a><br>
- <a href="https://www.amazon.de/gp/product/B0722PLC11/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&psc=1" target="_blank">LCD-Controller</a><br>
- <a href="https://www.amazon.de/gp/product/B01IT5TJSG/ref=ppx_yo_dt_b_asin_title_o09_s00?ie=UTF8&psc=1" target="_blank">Display</a><br>
- <a href="https://www.amazon.de/gp/product/B073K14CVB/ref=ppx_yo_dt_b_asin_image_o08_s02?ie=UTF8&psc=1" target="_blank">microSDHC memory card</a><br>
- <a href="https://www.ikea.com/ch/en/p/ribba-frame-white-20378459/" target="_blank">Frame</a><br>
- <a href="https://www.kunststoffpark.ch/materialien/kunststoff-spiegel/acrylglas-spiegel-2w/" target="_blank">Police mirror</a><br>
- <a href="https://www.amazon.de/dp/B00JINQPJA/ref=as_li_ss_tl?ie=UTF8&linkCode=sl1&tag=glancr-21&linkId=e89a42c951281887e0659ecf7c1c3d59&language=de_DE" target="_blank">
Power adapter
</a><br>
- HDMI and USB cable<br>
- Silicone glue from the hardware store<br>
- Tape<br>
- Chipboard<br>
</p>
</div>
</div>
</main>
</body>
</html>