This commit is contained in:
Frank DeMarco 2018-12-19 17:32:09 -05:00
parent 86f3aef797
commit e0c8f71884
4 changed files with 30 additions and 11 deletions

View File

@ -15,6 +15,5 @@
171204
256769
312561
137266
125811
127948
173960
237842

View File

@ -49,17 +49,16 @@ bool testConnection(int A, int B) {
void loop() {
if (testConnection(0, 1)) {
Serial.println("0011");
Serial.println("0011");
} else if (testConnection(0, 2)) {
Serial.println("0101");
Serial.println("0101");
} else if (testConnection(0, 3)) {
Serial.println("1001");
Serial.println("1001");
} else if (testConnection(1, 2)) {
Serial.println("0110");
Serial.println("0110");
} else if (testConnection(1, 3)) {
Serial.println("1010");
Serial.println("1010");
} else if (testConnection(2, 3)) {
Serial.println("1100");
Serial.println("1100");
}
}

View File

@ -27,6 +27,7 @@
to <i>Tony Hawk</i>?
<a id="frank" href="http://twitter.com/diskmem">@diskmem</a>
<a id="blake" href="http://twitter.com/snakesandrews">@snakesandrews</a>
<a id="clement" href="http://twitter.com/clementshimizu">@ClementShimizu</a>
</div>
<div id="detail2">
We have the <span class="highlight">technology</span> to put you on a board which is a
@ -53,7 +54,10 @@
to <i>Tony Hawk</i>?
</div>
</div>
<div id="boarding">
<div id="video">
<iframe width="889" height="500" src="https://www.youtube.com/embed/ai9WlJdfbvI" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</div>
</body>
</html>

View File

@ -94,6 +94,11 @@ div#detail a#blake
top: 95px;
}
div#detail a#clement
{
top: 110px;
}
div#detail2
{
font-family: NotCourierSans;
@ -161,3 +166,15 @@ div#boarding img
border: 8px solid black;
width: 200px;
}
div#video
{
text-align: center;
margin-top: 50px;
}
div#video iframe
{
border: 8px solid black;
border-radius: 30px;
}