This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkshop.html
executable file
·85 lines (77 loc) · 3.71 KB
/
workshop.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The homepage of MHacks' open-sourced technical projects.">
<title>MHacks – Hacker Boards</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/layouts/side-menu-old-ie.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="css/layouts/side-menu.css">
<!--<![endif]-->
</head>
<body>
<div id="layout">
<!-- Menu toggle -->
<a href="#menu" id="menuLink" class="menu-link">
<!-- Hamburger icon -->
<span></span>
</a>
<div id="menu">
<div class="pure-menu">
<a class="pure-menu-heading" href="index.html">MHacks Hacker<br>Boards</a>
<ul class="pure-menu-list">
<li class="pure-menu-item"><a href="workshop.html" class="pure-menu-link">Workshop</a></li>
<li class="pure-menu-item"><a href="basics.html" class="pure-menu-link">Basics</a></li>
<li class="pure-menu-item"><a href="workshop.html" class="pure-menu-link">Networking</a></li>
<!--<li classs="pure-menu-item"><a href="pastbasics.html" class="pure-menu-link">All Together</a></li>-->
<li class="pure-menu-item"><a href="resources.html" class="pure-menu-link">More Resources</a></li>
</li>
</ul>
</div>
</div>
<div id="main">
<div class="header">
<h1>Workshop Links</h1>
<h2>Complementing the MHacks Hardware Workshop</h2>
</div>
<div class="content">
<h2 class="content-subhead">What is this?</h2>
<p>This is a list of links that will be referenced in the hardware workshop. As you follow along in the workshop, click these links to get to where you need to be! If you would like to follow along with the slides, you can find them <a href="http://tinyurl.com/MXHackerBoards">here</a>.</p>
<p>If you aren't at the workshop, similar content to the workshop is covered on the <a href="basics.html">Basics</a> page.</p>
<h2 class="content-subhead">Links!</h2>
<h3>Setup</h3>
<ul>
<li>The Arduino IDE is <a href="http://tinyurl.com/mhacks-arduino">here</a>.</li>
<li>USB serial drivers are <a href="http://tinyurl.com/mhacks-serial">here</a>.</li>
<ul>
<li>Linux: first try without a driver, then try a driver. The drivers don't always work 😬.</li>
</ul>
<li>The URL to enter into the Additional Board Manager URLs section: <code>http://arduino.esp8266.com/stable/package_esp8266com_index.json</code></li>
</ul>
<h3>Hello World</h3>
<ul>
<li>"Hello World" demo code <a href="http://tinyurl.com/mhacks-hello">here</a>.</li>
</ul>
<h3>Important libraries</h3>
<ul>
<li>Addressable LED library <a href="http://tinyurl.com/mhacks-neopixels">here</a>.</li>
<li>JSON parsing library <a href="http://tinyurl.com/mhacks-json">here</a>.</li>
</ul>
<h3>Addressable LEDs</h3>
<ul>
<li>"Addressable LED" demo code <a href="http://tinyurl.com/mhacks-leds">here</a>.</li>
</ul>
<h3>Networking demo</h3>
<ul>
<li>"Networking demo" can be found <a href="http://tinyurl.com/mhacks-network">here</a>.</li>
</ul>
</div>
</div>
</div>
<script src="js/ui.js"></script>
</body>
</html>