Difference between revisions of "Team:Rotterdam HR/Notebook"

Line 1: Line 1:
 +
 
<html>
 
<html>
 
<head>
 
<head>
Line 5: Line 6:
  
 
<style>
 
<style>
+
:root {
.menu #project, .menu #notebook {
+
--main-color: #33691E;
color: goldenrod;
+
--secondary-color: #E0E0E0;
 +
--wetlab-color: #2E7D32;
 +
--wetlab-color-sec: #66bb6a;
 +
--hardware-color: #3949AB;
 +
--dark: rgb(50, 50, 50);
 
}
 
}
 
 
Line 13: Line 18:
 
display: flex;
 
display: flex;
 
flex-wrap: wrap;
 
flex-wrap: wrap;
justify-content: center;
+
justify-content: space-between;
width: 80%;
+
width: 70%;
 
margin: 20px auto;
 
margin: 20px auto;
 
}
 
}
Line 24: Line 29:
 
position: relative;
 
position: relative;
 
text-align: center;
 
text-align: center;
box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
+
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
transition: 200ms;
+
 
border-radius: 3px;
 
border-radius: 3px;
 
color: white;
 
color: white;
Line 39: Line 43:
 
}
 
}
  
.card::before, .card::after {
+
.card::before,
content: '';
+
.card::after {
 +
content: "";
 
position: absolute;
 
position: absolute;
 
top: 5px;
 
top: 5px;
Line 51: Line 56:
  
 
.card::before {
 
.card::before {
border-top: rgba(255,255,255,0.5) solid 1px;
+
border-top: rgba(255, 255, 255, 0.5) solid 1px;
border-bottom: rgba(255,255,255,0.5) solid 1px;
+
border-bottom: rgba(255, 255, 255, 0.5) solid 1px;
 
transform: scale(0, 1);
 
transform: scale(0, 1);
 
}
 
}
  
 
.card::after {
 
.card::after {
border-left: rgba(255,255,255,0.5) solid 1px;
+
border-left: rgba(255, 255, 255, 0.5) solid 1px;
border-right: rgba(255,255,255,0.5) solid 1px;
+
border-right: rgba(255, 255, 255, 0.5) solid 1px;
 
transform: scale(1, 0);
 
transform: scale(1, 0);
 +
}
 +
 +
.card .entryform {
 +
display: none;
 +
}
 +
 +
.card .titlebar {
 +
position: relative;
 +
display: flex;
 +
background: rgba(255, 255, 255, 0.1);
 +
color: white;
 +
align-items: center;
 +
padding-bottom: 5px;
 +
text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
 +
flex-direction: column;
 +
min-height: 50px;
 +
}
 +
 +
.card .titlebar svg {
 +
position: relative;
 +
top: 0;
 +
left: 0;
 +
right: 0;
 +
bottom: 0;
 +
}
 +
 +
.card .titlebar .title,
 +
.card .titlebar .date,
 +
.card .titlebar .back {
 +
margin: 0;
 +
color: white;
 +
}
 +
 +
.card .titlebar .title {
 +
background: none;
 +
}
 +
 +
.card .titlebar .date {
 +
padding: 5px;
 +
}
 +
 +
.card .titlebar .back {
 +
font-size: 60px;
 +
font-wieght: bold;
 +
position: absolute;
 +
top: 0;
 +
right: 10px;
 +
}
 +
 +
.card .attendees {
 +
background: rgba(255, 255, 255, 0.2);
 +
color: white;
 +
padding: 2px 2px 2px 10px;
 +
}
 +
 +
.card .description {
 +
padding: 10px;
 
}
 
}
  
Line 69: Line 131:
 
height: 45px;
 
height: 45px;
 
padding: 2px;
 
padding: 2px;
background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0) 50%);
+
background: linear-gradient(
 +
to bottom right,
 +
rgba(255, 255, 255, 0.1) 0%,
 +
rgba(0, 0, 0, 0.1) 50%,
 +
rgba(255, 255, 255, 0) 50%
 +
);
 
text-align: left;
 
text-align: left;
 
}
 
}
Line 75: Line 142:
 
.card .title {
 
.card .title {
 
margin: 0;
 
margin: 0;
height: 40px;
+
padding: 5px;
 
background: rgba(255, 255, 255, 0.1);
 
background: rgba(255, 255, 255, 0.1);
color: white;
+
height: 45px;
 
}
 
}
  
 
.card .more-info {
 
.card .more-info {
transform: scale(0,0);
+
transform: scale(0, 0);
 
position: absolute;
 
position: absolute;
 
bottom: 0;
 
bottom: 0;
Line 89: Line 156:
 
padding: 5px;
 
padding: 5px;
 
border-radius: 2px;
 
border-radius: 2px;
box-shadow: 2px 2px 10px rgba(0,0,0,0.20);
+
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
 
text-transform: uppercase;
 
text-transform: uppercase;
 
text-decoration: none;
 
text-decoration: none;
Line 96: Line 163:
 
transition: transform 400ms;
 
transition: transform 400ms;
 
z-index: 1;
 
z-index: 1;
 +
}
 +
 +
.card .titlebar .back:hover, .card .more-info:hover {
 +
cursor: pointer;
 
}
 
}
  
 
.card .more-info:after {
 
.card .more-info:after {
content: '';
+
content: "";
 
display: block;
 
display: block;
 
width: 70%;
 
width: 70%;
Line 118: Line 189:
 
}
 
}
  
.date {
+
.card .cardform .date {
 
position: absolute;
 
position: absolute;
 
bottom: -10px;
 
bottom: -10px;
Line 126: Line 197:
 
transform: scale(1, 1);
 
transform: scale(1, 1);
 
transition: transform 400ms;
 
transition: transform 400ms;
color: white;
 
 
}
 
}
  
.card:hover .date {
+
.card:hover .cardform .date {
transform: scale(0,0);
+
transform: scale(0, 0);
 
transition: transform 200ms;
 
transition: transform 200ms;
 
}
 
}
Line 166: Line 236:
 
display: none;
 
display: none;
 
}
 
}
 +
 +
.switch {
 +
display: none;
 +
}
 +
 +
#switch-0:checked ~ #card-0 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-0:checked ~ #card-0 .entryform {
 +
display: block;
 +
}
 +
#switch-0:checked ~ #card-0 .cardform,
 +
#switch-0:checked ~ #card-0::before,
 +
#switch-0:checked ~ #card-0::after {
 +
display: none;
 +
}
 +
 +
#switch-1:checked ~ #card-1 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-1:checked ~ #card-1 .entryform {
 +
display: block;
 +
}
 +
#switch-1:checked ~ #card-1 .cardform,
 +
#switch-1:checked ~ #card-1::before,
 +
#switch-1:checked ~ #card-1::after {
 +
display: none;
 +
}
 +
 +
@media screen and (max-width: 600px) {
 +
.cards {
 +
justify-content: center;
 +
width: 90%;
 +
}
 +
}
 +
 
</style>
 
</style>
  
Line 176: Line 284:
  
 
<div class="cards">
 
<div class="cards">
<div class="card wetlab-card">
+
 
<h3 class="title" style="padding: 5px;">CooA Production</h3>
+
<style>
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
+
#switch-85387008:checked ~ #card-85387008 {
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
+
width: 100%;
</svg>
+
height: auto;
<a class="more-info" href="https://2018.igem.org/Team:Rotterdam_HR/Notebook/1907/0">Show more</a>
+
}
<h2 class="date">19/07/2018</h2>
+
#switch-85387008:checked ~ #card-85387008 .entryform {
</div>
+
display: block;
 +
}
 +
#switch-85387008:checked ~ #card-85387008 .cardform,
 +
#switch-85387008:checked ~ #card-85387008::before,
 +
#switch-85387008:checked ~ #card-85387008::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-85387008" class="switch"></input>
 +
<div class="card wetlab-card" id="card-85387008">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Stock up</h1>
 +
<h3 class="date">7/11/2018</h3>
 +
<label class="back" for="switch-85387008">&times;</label>
 +
</div>
 +
<div class="attendees">Elise Grootscholten | Loraine Nelson | Paul Reusink</div>
 +
<div class="description">To have some basic biobricks ready, we stocked them by doing a plasmid isolation and freeze the DNA. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Stock up</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-85387008" class="more-info">Show more</label>
 +
<h2 class="date">7/11/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-56383975:checked ~ #card-56383975 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-56383975:checked ~ #card-56383975 .entryform {
 +
display: block;
 +
}
 +
#switch-56383975:checked ~ #card-56383975 .cardform,
 +
#switch-56383975:checked ~ #card-56383975::before,
 +
#switch-56383975:checked ~ #card-56383975::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-56383975" class="switch"></input>
 +
<div class="card wetlab-card" id="card-56383975">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Basic parts</h1>
 +
<h3 class="date">7/11/2018</h3>
 +
<label class="back" for="switch-56383975">&times;</label>
 +
</div>
 +
<div class="attendees">Elise Grootscholten | Loraine Nelson | Paul Reusink</div>
 +
<div class="description">To start on a basic construct we did a digestion and ligation with the parts we isolated earlier. To prevent original constructs we did a defosphorylation after the digestion. We controlled the digestion by doing a gelelktroforeses. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Basic parts</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-56383975" class="more-info">Show more</label>
 +
<h2 class="date">7/11/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-58680754:checked ~ #card-58680754 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-58680754:checked ~ #card-58680754 .entryform {
 +
display: block;
 +
}
 +
#switch-58680754:checked ~ #card-58680754 .cardform,
 +
#switch-58680754:checked ~ #card-58680754::before,
 +
#switch-58680754:checked ~ #card-58680754::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-58680754" class="switch"></input>
 +
<div class="card wetlab-card" id="card-58680754">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Basic parts</h1>
 +
<h3 class="date">7/12/2018</h3>
 +
<label class="back" for="switch-58680754">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Randall de Waard</div>
 +
<div class="description">We continued with the ligated DNA by transformating it to Neb10Beta. This was plated onto agarplates and incubated for 1 day. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">Basic parts</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-58680754" class="more-info">Show more</label>
 +
<h2 class="date">7/12/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-51447365:checked ~ #card-51447365 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-51447365:checked ~ #card-51447365 .entryform {
 +
display: block;
 +
}
 +
#switch-51447365:checked ~ #card-51447365 .cardform,
 +
#switch-51447365:checked ~ #card-51447365::before,
 +
#switch-51447365:checked ~ #card-51447365::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-51447365" class="switch"></input>
 +
<div class="card wetlab-card" id="card-51447365">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Basic parts</h1>
 +
<h3 class="date">7/13/2018</h3>
 +
<label class="back" for="switch-51447365">&times;</label>
 +
</div>
 +
<div class="attendees">Elise Grootscholten | Randall de Waard</div>
 +
<div class="description">The results of 7/12/2018 were collected, in action of this we decided to plate some ligated and transferred DNA from 7/12/2018 again. This we did because there wasn't a clear grow of colonies on the plates.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>03</b></div>
 +
<h3 class="title">Basic parts</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-51447365" class="more-info">Show more</label>
 +
<h2 class="date">7/13/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-62874130:checked ~ #card-62874130 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-62874130:checked ~ #card-62874130 .entryform {
 +
display: block;
 +
}
 +
#switch-62874130:checked ~ #card-62874130 .cardform,
 +
#switch-62874130:checked ~ #card-62874130::before,
 +
#switch-62874130:checked ~ #card-62874130::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-62874130" class="switch"></input>
 +
<div class="card wetlab-card" id="card-62874130">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Paper Bacteria</h1>
 +
<h3 class="date">7/13/2018</h3>
 +
<label class="back" for="switch-62874130">&times;</label>
 +
</div>
 +
<div class="attendees">Elise Grootscholten | Randall de Waard</div>
 +
<div class="description">We tried to let bacteria grow on paper, therefore we used our own buisnesscards. We let the buisnesscards absorb some LB-medium and put them inside petridishes. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Paper Bacteria</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-62874130" class="more-info">Show more</label>
 +
<h2 class="date">7/13/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-75851078:checked ~ #card-75851078 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-75851078:checked ~ #card-75851078 .entryform {
 +
display: block;
 +
}
 +
#switch-75851078:checked ~ #card-75851078 .cardform,
 +
#switch-75851078:checked ~ #card-75851078::before,
 +
#switch-75851078:checked ~ #card-75851078::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-75851078" class="switch"></input>
 +
<div class="card wetlab-card" id="card-75851078">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Basic parts</h1>
 +
<h3 class="date">7/16/2018</h3>
 +
<label class="back" for="switch-75851078">&times;</label>
 +
</div>
 +
<div class="attendees">Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Randall de Waard</div>
 +
<div class="description">To know if the ligation was succesfull we will controll the DNA, therefor we ented the bacteria's with DNA in LB-medium to grow overnight. We also plated the used bacteria's onto new plates to use for further experiments. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>04</b></div>
 +
<h3 class="title">Basic parts</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-75851078" class="more-info">Show more</label>
 +
<h2 class="date">7/16/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-11321676:checked ~ #card-11321676 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-11321676:checked ~ #card-11321676 .entryform {
 +
display: block;
 +
}
 +
#switch-11321676:checked ~ #card-11321676 .cardform,
 +
#switch-11321676:checked ~ #card-11321676::before,
 +
#switch-11321676:checked ~ #card-11321676::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-11321676" class="switch"></input>
 +
<div class="card wetlab-card" id="card-11321676">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Paper Bacteria </h1>
 +
<h3 class="date">7/16/2018</h3>
 +
<label class="back" for="switch-11321676">&times;</label>
 +
</div>
 +
<div class="attendees">Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Randall de Waard</div>
 +
<div class="description">We did a blue white screening on our buisnesscards to see if bacteria had grew on them. We transferred the buisnesscards to new petrydishes and added ITPG and X-gal to the petrydishes. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">Paper Bacteria </h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-11321676" class="more-info">Show more</label>
 +
<h2 class="date">7/16/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-80468659:checked ~ #card-80468659 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-80468659:checked ~ #card-80468659 .entryform {
 +
display: block;
 +
}
 +
#switch-80468659:checked ~ #card-80468659 .cardform,
 +
#switch-80468659:checked ~ #card-80468659::before,
 +
#switch-80468659:checked ~ #card-80468659::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-80468659" class="switch"></input>
 +
<div class="card wetlab-card" id="card-80468659">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Basic parts</h1>
 +
<h3 class="date">7/17/2018</h3>
 +
<label class="back" for="switch-80468659">&times;</label>
 +
</div>
 +
<div class="attendees">Rens Boeser | Dustin van der Meulen | Loraine Nelson  | Suzanne Romeijn | Randall de Waard</div>
 +
<div class="description">The resulst of 7/16/2018 showed that the DNA didnt ligate as planned. To be able to digest enough DNA we did a plasmid isolation again. We digested this DNA and froze it for further use. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>05</b></div>
 +
<h3 class="title">Basic parts</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-80468659" class="more-info">Show more</label>
 +
<h2 class="date">7/17/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-91624158:checked ~ #card-91624158 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-91624158:checked ~ #card-91624158 .entryform {
 +
display: block;
 +
}
 +
#switch-91624158:checked ~ #card-91624158 .cardform,
 +
#switch-91624158:checked ~ #card-91624158::before,
 +
#switch-91624158:checked ~ #card-91624158::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-91624158" class="switch"></input>
 +
<div class="card wetlab-card" id="card-91624158">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">stocking</h1>
 +
<h3 class="date">7/18/2018</h3>
 +
<label class="back" for="switch-91624158">&times;</label>
 +
</div>
 +
<div class="attendees">Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Mike Vrieswijk | Randall de Waard</div>
 +
<div class="description">We did another round of plasmid isolation for stocking. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">stocking</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-91624158" class="more-info">Show more</label>
 +
<h2 class="date">7/18/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-21133291:checked ~ #card-21133291 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-21133291:checked ~ #card-21133291 .entryform {
 +
display: block;
 +
}
 +
#switch-21133291:checked ~ #card-21133291 .cardform,
 +
#switch-21133291:checked ~ #card-21133291::before,
 +
#switch-21133291:checked ~ #card-21133291::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-21133291" class="switch"></input>
 +
<div class="card wetlab-card" id="card-21133291">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Basic parts</h1>
 +
<h3 class="date">7/19/2018</h3>
 +
<label class="back" for="switch-21133291">&times;</label>
 +
</div>
 +
<div class="attendees">Dustin van der Meulen | Mei Ju Goemans| Randall de Waard </div>
 +
<div class="description">We digested all DNA we have in stock to test for our basic construct. We tested the DNA by doing a gelelktroforeses. </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>07</b></div>
 +
<h3 class="title">Basic parts</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-21133291" class="more-info">Show more</label>
 +
<h2 class="date">7/19/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-68117202:checked ~ #card-68117202 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-68117202:checked ~ #card-68117202 .entryform {
 +
display: block;
 +
}
 +
#switch-68117202:checked ~ #card-68117202 .cardform,
 +
#switch-68117202:checked ~ #card-68117202::before,
 +
#switch-68117202:checked ~ #card-68117202::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-68117202" class="switch"></input>
 +
<div class="card wetlab-card" id="card-68117202">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">ATP sensor</h1>
 +
<h3 class="date">7/24/2018</h3>
 +
<label class="back" for="switch-68117202">&times;</label>
 +
</div>
 +
<div class="attendees">Rens Boeser | Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Randall de Waard</div>
 +
<div class="description">New biobricks, used to make an ATP sensor, were transformed into NEB10Beta. The culture was than plated onto agar and incubated for 1 day.  </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">ATP sensor</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-68117202" class="more-info">Show more</label>
 +
<h2 class="date">7/24/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-71328790:checked ~ #card-71328790 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-71328790:checked ~ #card-71328790 .entryform {
 +
display: block;
 +
}
 +
#switch-71328790:checked ~ #card-71328790 .cardform,
 +
#switch-71328790:checked ~ #card-71328790::before,
 +
#switch-71328790:checked ~ #card-71328790::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-71328790" class="switch"></input>
 +
<div class="card wetlab-card" id="card-71328790">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<h1 class="title">Gas output</h1>
 +
<h3 class="date">7/25/2018</h3>
 +
<label class="back" for="switch-71328790">&times;</label>
 +
</div>
 +
<div class="attendees">Rens Boeser | Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Randall de Waard</div>
 +
<div class="description">New biobricks, which produces gasses, were transformed into NEB10Beta. The culture was than plated onto agar and incubated for 1 day.  </div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Gas output</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M9.46,6.28L11.05,9C8.47,9.26 6.5,11.41 6.5,14A5,5 0 0,0 11.5,19C13.55,19 15.31,17.77 16.08,16H13.5V14H21.5V16H19.25C18.84,17.57 17.97,18.96 16.79,20H19.5V22H3.5V20H6.21C4.55,18.53 3.5,16.39 3.5,14C3.5,10.37 5.96,7.2 9.46,6.28M12.74,2.07L13.5,3.37L14.36,2.87L17.86,8.93L14.39,10.93L10.89,4.87L11.76,4.37L11,3.07L12.74,2.07Z" />
 +
</svg>
 +
<label for="switch-71328790" class="more-info">Show more</label>
 +
<h2 class="date">7/25/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-70890485:checked ~ #card-70890485 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-70890485:checked ~ #card-70890485 .entryform {
 +
display: block;
 +
}
 +
#switch-70890485:checked ~ #card-70890485 .cardform,
 +
#switch-70890485:checked ~ #card-70890485::before,
 +
#switch-70890485:checked ~ #card-70890485::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-70890485" class="switch"></input>
 +
<div class="card hardware-card" id="card-70890485">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Architecture design [TC]</h1>
 +
<h3 class="date">6/18/2018</h3>
 +
<label class="back" for="switch-70890485">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">The first draft of the architecture design for the temperature controller was made.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Architecture design [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-70890485" class="more-info">Show more</label>
 +
<h2 class="date">6/18/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-94229451:checked ~ #card-94229451 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-94229451:checked ~ #card-94229451 .entryform {
 +
display: block;
 +
}
 +
#switch-94229451:checked ~ #card-94229451 .cardform,
 +
#switch-94229451:checked ~ #card-94229451::before,
 +
#switch-94229451:checked ~ #card-94229451::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-94229451" class="switch"></input>
 +
<div class="card hardware-card" id="card-94229451">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Architecture design [TC]</h1>
 +
<h3 class="date">6/24/2018</h3>
 +
<label class="back" for="switch-94229451">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">Today a few changes have been made to the architecture design of the temperature controller. The choice was made to use a premade power supply as opposed to a self-made one, because this was considering the time left to finish this device the best choice. A few alterations were made to make the architecture design better readable.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">Architecture design [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-94229451" class="more-info">Show more</label>
 +
<h2 class="date">6/24/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-88421351:checked ~ #card-88421351 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-88421351:checked ~ #card-88421351 .entryform {
 +
display: block;
 +
}
 +
#switch-88421351:checked ~ #card-88421351 .cardform,
 +
#switch-88421351:checked ~ #card-88421351::before,
 +
#switch-88421351:checked ~ #card-88421351::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-88421351" class="switch"></input>
 +
<div class="card hardware-card" id="card-88421351">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">First prototype [TC]</h1>
 +
<h3 class="date">6/25/2018</h3>
 +
<label class="back" for="switch-88421351">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">A 3d drawing was made for the casing that will hold the temperature controller. The first prototype was printed, but was determent to be inadequate due to the lack of enough space for the cooler block.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">First prototype [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-88421351" class="more-info">Show more</label>
 +
<h2 class="date">6/25/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-49985686:checked ~ #card-49985686 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-49985686:checked ~ #card-49985686 .entryform {
 +
display: block;
 +
}
 +
#switch-49985686:checked ~ #card-49985686 .cardform,
 +
#switch-49985686:checked ~ #card-49985686::before,
 +
#switch-49985686:checked ~ #card-49985686::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-49985686" class="switch"></input>
 +
<div class="card hardware-card" id="card-49985686">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Second prototype [TC]</h1>
 +
<h3 class="date">6/26/2018</h3>
 +
<label class="back" for="switch-49985686">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">In the drawing space was added to fit the cooler block for the temperature controller. Slits were added to the drawing for the nuts to slide into. The altered drawing was printed. The newly printed parts, cooler block, fan and Peltier element were assembled. Everything fit together.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">Second prototype [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-49985686" class="more-info">Show more</label>
 +
<h2 class="date">6/26/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-38271466:checked ~ #card-38271466 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-38271466:checked ~ #card-38271466 .entryform {
 +
display: block;
 +
}
 +
#switch-38271466:checked ~ #card-38271466 .cardform,
 +
#switch-38271466:checked ~ #card-38271466::before,
 +
#switch-38271466:checked ~ #card-38271466::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-38271466" class="switch"></input>
 +
<div class="card hardware-card" id="card-38271466">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Testrun [TC]</h1>
 +
<h3 class="date">6/27/2018</h3>
 +
<label class="back" for="switch-38271466">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">A short test run was done with the newly assembled cooler. The test concluded that the temperature controller could cool a water droplet to the point of freezing and heat it back up to its boiling point.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>03</b></div>
 +
<h3 class="title">Testrun [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-38271466" class="more-info">Show more</label>
 +
<h2 class="date">6/27/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-78032479:checked ~ #card-78032479 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-78032479:checked ~ #card-78032479 .entryform {
 +
display: block;
 +
}
 +
#switch-78032479:checked ~ #card-78032479 .cardform,
 +
#switch-78032479:checked ~ #card-78032479::before,
 +
#switch-78032479:checked ~ #card-78032479::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-78032479" class="switch"></input>
 +
<div class="card hardware-card" id="card-78032479">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Draft decision</h1>
 +
<h3 class="date">7/2/2018</h3>
 +
<label class="back" for="switch-78032479">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">The choice to use a computer PSU as a power supply was made. The choice was made on the grounds, that computer PSU have a standard 12, 5 and 3.3V output. This is beneficial because these are the voltages necessary for the selected components.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Draft decision</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-78032479" class="more-info">Show more</label>
 +
<h2 class="date">7/2/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-16647143:checked ~ #card-16647143 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-16647143:checked ~ #card-16647143 .entryform {
 +
display: block;
 +
}
 +
#switch-16647143:checked ~ #card-16647143 .cardform,
 +
#switch-16647143:checked ~ #card-16647143::before,
 +
#switch-16647143:checked ~ #card-16647143::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-16647143" class="switch"></input>
 +
<div class="card hardware-card" id="card-16647143">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Architecture design [TC]</h1>
 +
<h3 class="date">7/5/2018</h3>
 +
<label class="back" for="switch-16647143">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">Changes were made to the architecture design of the temperature controller. Different voltage regulators were selected to fit the newly chosen power supply. To better readability of the architecture design a legend was added.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>03</b></div>
 +
<h3 class="title">Architecture design [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-16647143" class="more-info">Show more</label>
 +
<h2 class="date">7/5/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-38460067:checked ~ #card-38460067 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-38460067:checked ~ #card-38460067 .entryform {
 +
display: block;
 +
}
 +
#switch-38460067:checked ~ #card-38460067 .cardform,
 +
#switch-38460067:checked ~ #card-38460067::before,
 +
#switch-38460067:checked ~ #card-38460067::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-38460067" class="switch"></input>
 +
<div class="card hardware-card" id="card-38460067">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Electrical circuit design [TC]</h1>
 +
<h3 class="date">7/8/2018</h3>
 +
<label class="back" for="switch-38460067">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">Custom footprints were made for multiple components and added to the parts library in the PCB design software.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Electrical circuit design [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-38460067" class="more-info">Show more</label>
 +
<h2 class="date">7/8/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-65773900:checked ~ #card-65773900 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-65773900:checked ~ #card-65773900 .entryform {
 +
display: block;
 +
}
 +
#switch-65773900:checked ~ #card-65773900 .cardform,
 +
#switch-65773900:checked ~ #card-65773900::before,
 +
#switch-65773900:checked ~ #card-65773900::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-65773900" class="switch"></input>
 +
<div class="card hardware-card" id="card-65773900">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Electrical circuit design [TC]</h1>
 +
<h3 class="date">7/9/2018</h3>
 +
<label class="back" for="switch-65773900">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">The provisional electronic circuit design for the temperature controller was made.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">Electrical circuit design [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-65773900" class="more-info">Show more</label>
 +
<h2 class="date">7/9/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-26077105:checked ~ #card-26077105 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-26077105:checked ~ #card-26077105 .entryform {
 +
display: block;
 +
}
 +
#switch-26077105:checked ~ #card-26077105 .cardform,
 +
#switch-26077105:checked ~ #card-26077105::before,
 +
#switch-26077105:checked ~ #card-26077105::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-26077105" class="switch"></input>
 +
<div class="card hardware-card" id="card-26077105">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Electrical circuit design [TC]</h1>
 +
<h3 class="date">7/11/2018</h3>
 +
<label class="back" for="switch-26077105">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">The electronic circuit design for the temperature controller was finished. Measuring point were added to the electronic circuit design.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>03</b></div>
 +
<h3 class="title">Electrical circuit design [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-26077105" class="more-info">Show more</label>
 +
<h2 class="date">7/11/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-42000606:checked ~ #card-42000606 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-42000606:checked ~ #card-42000606 .entryform {
 +
display: block;
 +
}
 +
#switch-42000606:checked ~ #card-42000606 .cardform,
 +
#switch-42000606:checked ~ #card-42000606::before,
 +
#switch-42000606:checked ~ #card-42000606::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-42000606" class="switch"></input>
 +
<div class="card hardware-card" id="card-42000606">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Board layout [TC]</h1>
 +
<h3 class="date">7/12/2018</h3>
 +
<label class="back" for="switch-42000606">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">Started working on the board layout for the PCB of the temperature controller.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>01</b></div>
 +
<h3 class="title">Board layout [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-42000606" class="more-info">Show more</label>
 +
<h2 class="date">7/12/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-52804318:checked ~ #card-52804318 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-52804318:checked ~ #card-52804318 .entryform {
 +
display: block;
 +
}
 +
#switch-52804318:checked ~ #card-52804318 .cardform,
 +
#switch-52804318:checked ~ #card-52804318::before,
 +
#switch-52804318:checked ~ #card-52804318::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-52804318" class="switch"></input>
 +
<div class="card hardware-card" id="card-52804318">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Board layout [TC]</h1>
 +
<h3 class="date">7/13/2018</h3>
 +
<label class="back" for="switch-52804318">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">Further work was done to the board layout for the temperature controller.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>02</b></div>
 +
<h3 class="title">Board layout [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-52804318" class="more-info">Show more</label>
 +
<h2 class="date">7/13/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 +
<style>
 +
#switch-45772304:checked ~ #card-45772304 {
 +
width: 100%;
 +
height: auto;
 +
}
 +
#switch-45772304:checked ~ #card-45772304 .entryform {
 +
display: block;
 +
}
 +
#switch-45772304:checked ~ #card-45772304 .cardform,
 +
#switch-45772304:checked ~ #card-45772304::before,
 +
#switch-45772304:checked ~ #card-45772304::after {
 +
display: none;
 +
}
 +
</style>
 +
 
 +
<input type="checkbox" id="switch-45772304" class="switch"></input>
 +
<div class="card hardware-card" id="card-45772304">
 +
 
 +
<div class="entryform">
 +
<div class="titlebar">
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<h1 class="title">Board layout [TC]</h1>
 +
<h3 class="date">7/15/2018</h3>
 +
<label class="back" for="switch-45772304">&times;</label>
 +
</div>
 +
<div class="attendees">Tom van Dijk | Mike Vrieswijk</div>
 +
<div class="description">Work has been done on the board layout for the temperature controller. The board layout is now finished.</div>
 +
</div>
 +
 
 +
<div class="cardform">
 +
<div class="number"><b>03</b></div>
 +
<h3 class="title">Board layout [TC]</h3>
 +
<svg style="width:80px;height:80px" viewBox="0 0 24 24">
 +
<path fill="currentColor" d="M15.9,18.45C17.25,18.45 18.35,17.35 18.35,16C18.35,14.65 17.25,13.55 15.9,13.55C14.54,13.55 13.45,14.65 13.45,16C13.45,17.35 14.54,18.45 15.9,18.45M21.1,16.68L22.58,17.84C22.71,17.95 22.75,18.13 22.66,18.29L21.26,20.71C21.17,20.86 21,20.92 20.83,20.86L19.09,20.16C18.73,20.44 18.33,20.67 17.91,20.85L17.64,22.7C17.62,22.87 17.47,23 17.3,23H14.5C14.32,23 14.18,22.87 14.15,22.7L13.89,20.85C13.46,20.67 13.07,20.44 12.71,20.16L10.96,20.86C10.81,20.92 10.62,20.86 10.54,20.71L9.14,18.29C9.05,18.13 9.09,17.95 9.22,17.84L10.7,16.68L10.65,16L10.7,15.31L9.22,14.16C9.09,14.05 9.05,13.86 9.14,13.71L10.54,11.29C10.62,11.13 10.81,11.07 10.96,11.13L12.71,11.84C13.07,11.56 13.46,11.32 13.89,11.15L14.15,9.29C14.18,9.13 14.32,9 14.5,9H17.3C17.47,9 17.62,9.13 17.64,9.29L17.91,11.15C18.33,11.32 18.73,11.56 19.09,11.84L20.83,11.13C21,11.07 21.17,11.13 21.26,11.29L22.66,13.71C22.75,13.86 22.71,14.05 22.58,14.16L21.1,15.31L21.15,16L21.1,16.68M6.69,8.07C7.56,8.07 8.26,7.37 8.26,6.5C8.26,5.63 7.56,4.92 6.69,4.92A1.58,1.58 0 0,0 5.11,6.5C5.11,7.37 5.82,8.07 6.69,8.07M10.03,6.94L11,7.68C11.07,7.75 11.09,7.87 11.03,7.97L10.13,9.53C10.08,9.63 9.96,9.67 9.86,9.63L8.74,9.18L8,9.62L7.81,10.81C7.79,10.92 7.7,11 7.59,11H5.79C5.67,11 5.58,10.92 5.56,10.81L5.4,9.62L4.64,9.18L3.5,9.63C3.41,9.67 3.3,9.63 3.24,9.53L2.34,7.97C2.28,7.87 2.31,7.75 2.39,7.68L3.34,6.94L3.31,6.5L3.34,6.06L2.39,5.32C2.31,5.25 2.28,5.13 2.34,5.03L3.24,3.47C3.3,3.37 3.41,3.33 3.5,3.37L4.63,3.82L5.4,3.38L5.56,2.19C5.58,2.08 5.67,2 5.79,2H7.59C7.7,2 7.79,2.08 7.81,2.19L8,3.38L8.74,3.82L9.86,3.37C9.96,3.33 10.08,3.37 10.13,3.47L11.03,5.03C11.09,5.13 11.07,5.25 11,5.32L10.03,6.06L10.06,6.5L10.03,6.94Z"></path>
 +
</svg>
 +
<label for="switch-45772304" class="more-info">Show more</label>
 +
<h2 class="date">7/15/2018</h2>
 +
</div>
 +
 
 +
</div>
 +
 
 
</div>
 
</div>
  

Revision as of 09:18, 25 July 2018

Stock up

7/11/2018

Elise Grootscholten | Loraine Nelson | Paul Reusink
To have some basic biobricks ready, we stocked them by doing a plasmid isolation and freeze the DNA.
01

Stock up

7/11/2018

Basic parts

7/11/2018

Elise Grootscholten | Loraine Nelson | Paul Reusink
To start on a basic construct we did a digestion and ligation with the parts we isolated earlier. To prevent original constructs we did a defosphorylation after the digestion. We controlled the digestion by doing a gelelktroforeses.
01

Basic parts

7/11/2018

Basic parts

7/12/2018

Tom van Dijk | Randall de Waard
We continued with the ligated DNA by transformating it to Neb10Beta. This was plated onto agarplates and incubated for 1 day.
02

Basic parts

7/12/2018

Basic parts

7/13/2018

Elise Grootscholten | Randall de Waard
The results of 7/12/2018 were collected, in action of this we decided to plate some ligated and transferred DNA from 7/12/2018 again. This we did because there wasn't a clear grow of colonies on the plates.
03

Basic parts

7/13/2018

Paper Bacteria

7/13/2018

Elise Grootscholten | Randall de Waard
We tried to let bacteria grow on paper, therefore we used our own buisnesscards. We let the buisnesscards absorb some LB-medium and put them inside petridishes.
01

Paper Bacteria

7/13/2018

Basic parts

7/16/2018

Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Randall de Waard
To know if the ligation was succesfull we will controll the DNA, therefor we ented the bacteria's with DNA in LB-medium to grow overnight. We also plated the used bacteria's onto new plates to use for further experiments.
04

Basic parts

7/16/2018

Paper Bacteria

7/16/2018

Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Randall de Waard
We did a blue white screening on our buisnesscards to see if bacteria had grew on them. We transferred the buisnesscards to new petrydishes and added ITPG and X-gal to the petrydishes.
02

Paper Bacteria

7/16/2018

Basic parts

7/17/2018

Rens Boeser | Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Randall de Waard
The resulst of 7/16/2018 showed that the DNA didnt ligate as planned. To be able to digest enough DNA we did a plasmid isolation again. We digested this DNA and froze it for further use.
05

Basic parts

7/17/2018

stocking

7/18/2018

Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Mike Vrieswijk | Randall de Waard
We did another round of plasmid isolation for stocking.
02

stocking

7/18/2018

Basic parts

7/19/2018

Dustin van der Meulen | Mei Ju Goemans| Randall de Waard
We digested all DNA we have in stock to test for our basic construct. We tested the DNA by doing a gelelktroforeses.
07

Basic parts

7/19/2018

ATP sensor

7/24/2018

Rens Boeser | Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Randall de Waard
New biobricks, used to make an ATP sensor, were transformed into NEB10Beta. The culture was than plated onto agar and incubated for 1 day.
01

ATP sensor

7/24/2018

Gas output

7/25/2018

Rens Boeser | Mei Ju Goemans | Elise Grootscholten | Dustin van der Meulen | Loraine Nelson | Suzanne Romeijn | Randall de Waard
New biobricks, which produces gasses, were transformed into NEB10Beta. The culture was than plated onto agar and incubated for 1 day.
01

Gas output

7/25/2018

Architecture design [TC]

6/18/2018

Tom van Dijk | Mike Vrieswijk
The first draft of the architecture design for the temperature controller was made.
01

Architecture design [TC]

6/18/2018

Architecture design [TC]

6/24/2018

Tom van Dijk | Mike Vrieswijk
Today a few changes have been made to the architecture design of the temperature controller. The choice was made to use a premade power supply as opposed to a self-made one, because this was considering the time left to finish this device the best choice. A few alterations were made to make the architecture design better readable.
02

Architecture design [TC]

6/24/2018

First prototype [TC]

6/25/2018

Tom van Dijk | Mike Vrieswijk
A 3d drawing was made for the casing that will hold the temperature controller. The first prototype was printed, but was determent to be inadequate due to the lack of enough space for the cooler block.
01

First prototype [TC]

6/25/2018

Second prototype [TC]

6/26/2018

Tom van Dijk | Mike Vrieswijk
In the drawing space was added to fit the cooler block for the temperature controller. Slits were added to the drawing for the nuts to slide into. The altered drawing was printed. The newly printed parts, cooler block, fan and Peltier element were assembled. Everything fit together.
02

Second prototype [TC]

6/26/2018

Testrun [TC]

6/27/2018

Tom van Dijk | Mike Vrieswijk
A short test run was done with the newly assembled cooler. The test concluded that the temperature controller could cool a water droplet to the point of freezing and heat it back up to its boiling point.
03

Testrun [TC]

6/27/2018

Draft decision

7/2/2018

Tom van Dijk | Mike Vrieswijk
The choice to use a computer PSU as a power supply was made. The choice was made on the grounds, that computer PSU have a standard 12, 5 and 3.3V output. This is beneficial because these are the voltages necessary for the selected components.
01

Draft decision

7/2/2018

Architecture design [TC]

7/5/2018

Tom van Dijk | Mike Vrieswijk
Changes were made to the architecture design of the temperature controller. Different voltage regulators were selected to fit the newly chosen power supply. To better readability of the architecture design a legend was added.
03

Architecture design [TC]

7/5/2018

Electrical circuit design [TC]

7/8/2018

Tom van Dijk | Mike Vrieswijk
Custom footprints were made for multiple components and added to the parts library in the PCB design software.
01

Electrical circuit design [TC]

7/8/2018

Electrical circuit design [TC]

7/9/2018

Tom van Dijk | Mike Vrieswijk
The provisional electronic circuit design for the temperature controller was made.
02

Electrical circuit design [TC]

7/9/2018

Electrical circuit design [TC]

7/11/2018

Tom van Dijk | Mike Vrieswijk
The electronic circuit design for the temperature controller was finished. Measuring point were added to the electronic circuit design.
03

Electrical circuit design [TC]

7/11/2018

Board layout [TC]

7/12/2018

Tom van Dijk | Mike Vrieswijk
Started working on the board layout for the PCB of the temperature controller.
01

Board layout [TC]

7/12/2018

Board layout [TC]

7/13/2018

Tom van Dijk | Mike Vrieswijk
Further work was done to the board layout for the temperature controller.
02

Board layout [TC]

7/13/2018

Board layout [TC]

7/15/2018

Tom van Dijk | Mike Vrieswijk
Work has been done on the board layout for the temperature controller. The board layout is now finished.
03

Board layout [TC]

7/15/2018