-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.html
34 lines (34 loc) · 2.14 KB
/
setup.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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="pandoc" />
<title></title>
<style type="text/css">code{white-space: pre;}</style>
<link rel="stylesheet" type="text/css" media="screen, projection, print"
href="http://www.w3.org/Talks/Tools/Slidy2/styles/slidy.css" />
<script src="http://www.w3.org/Talks/Tools/Slidy2/scripts/slidy.js"
charset="utf-8" type="text/javascript"></script>
</head>
<body>
<div id="lecture-0-setting-up-your-arduino" class="slide section level1">
<h1>Lecture 0: Setting up your Arduino</h1>
<div class="figure">
<img src="img/uno.svg" title="Arduino Uno" alt="Arduino Uno" />
<p class="caption">Arduino Uno</p>
</div>
<h2 id="download-the-ide">Download the IDE</h2>
<p>In order to program your board you'll need to get some software that allows you to upload, or flash, code to the Arduino. There are a number of different options available - some of which will be discussed later on - but for the moment let's get started using the official IDE (Integrated Development Environment) from the <a href="https://arduino.cc/download" target="_blank">Arduino Website</a></p>
<h2 id="blink">Blink</h2>
<p>Since time immemorial (well...<a href="http://en.wikipedia.org/wiki/%22Hello,_World!%22_program#History">1974</a>) people have written a very simple "Hello World" program as their first foray into a new language. Since an Arduino doesn't have the means to display typed characters we'll have to make do with turning the an LED on and off. The <em>blink</em> sketch is outlined below.</p>
<p><code data-gist-id="733c75eac70f8a806015"></code></p>
<h2 id="view-slides">View Slides</h2>
<p>To view a slide show of this guide <a href="00set_up_slides.html" target="_blank">click here.</a></p>
<h2 id="download-notes">Download Notes</h2>
<p>To download the printable version of these notes click here</p>
</div>
</body>
</html>