09-16-17
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
09-16-17 [2017/09/16 05:45] – felix_hardmood_beck | 09-16-17 [2024/06/28 19:11] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Manus Et Machina ===== | ||
+ | Engineering Design Studio (A5, 015)\\ | ||
+ | Saturday, September 16, 2017, 11:50 am – 13:05 pm | ||
+ | ---- | ||
+ | |||
+ | === Prelude === | ||
+ | |||
+ | * Attendance list | ||
+ | * About Physical Computing | ||
+ | * Auto-activity, | ||
+ | |||
+ | |||
+ | === Introduction to Arduino === | ||
+ | |||
+ | There are many many different types of software languages, the ones that I think are most interesting are the [[http:// | ||
+ | |||
+ | The general idea behind software is that it abstracts machine instructions (a series of 0s and 1s) and gives us something closer to natural human language to address the computer with. We have limited options for the Arduino that we’re starting off with, and that’s a good thing. [[https:// | ||
+ | |||
+ | While you can write software anywhere, a scrap of paper, text pad, back of your hand, it’s best to write it in an application that will compile the code into something meaningful to the machine. With Arduino, the makers of the hardware have created an IDE (Integrated Development Environment) that allows us to write code and compile it to machine language in one place. It will also do the neat backflip of loading the code onto the microcontroller for us. That way, you can upload your code, unplug it from your computer, and let it go on its own very way, running your program all the live long day. | ||
+ | |||
+ | Obviously we need // | ||
+ | |||
+ | An Arduino can do a bunch of things, but what it really excels at is gathering information about the physical world through electrical inputs, doing a little processing on the values it reads off those inputs, and spitting back information about that reading. This information can take the form of a motor spinning, a buzzer budding, sending data to a multimedia computer for more processing, or lighting up an LED, like we did Thursday using the blink example. | ||
+ | |||
+ | Now, let’s build a circuit using the blink example again. | ||
+ | |||
+ | First, go around the Engineering Design Studio and find | ||
+ | - a breadboard | ||
+ | - some jumper wires | ||
+ | - a Light Emitting Diode (LED) | ||
+ | - one ±220 ohm resistor | ||
+ | |||
+ | |||
+ | {{: | ||
+ | Remember to always disconnect your Arduino from your laptop or an external power source when you work on your circuit. | ||
+ | |||
+ | Connect the anode (longer leg) of the LED to pin 7. Connect the cathode (short leg) to ground through a resistor (between 220ohm – 1kilohm is fine). Plug the Arduino into your computer and get ready to upload the code! | ||
+ | |||
+ | Remember, you need to select which board you’re using in the “Tools” menu, and the port the board is connected to. This insures the IDE prepares the code for the right kind of board, and tries to communicate on the proper port. | ||
+ | |||
+ | Now your LED on the breadboard blinks! | ||
+ | |||
+ | Now let’s get some input. We’ll start with the hardware. | ||
+ | |||
+ | Go around the Engineering Design Studio and find | ||
+ | - a 10 kohm resistor | ||
+ | - a simple push button | ||
+ | |||
+ | |||
+ | {{: | ||
+ | |||
+ | You’re probably asking what the devil that 10kilohm resistor is doing in there. | ||
+ | |||
+ | When you press the button as wired above, the voltage flows to the Arduino pin, bypassing the 10k resistor (because electricity follows the path of least resistance, and the 10k is pretty big). When the button is not pressed, it provides the pin a reference to ground. Without that reference, the pin would be “floating” and may pick up all sorts of stray electricity. This 10k resistor is your insurance that you will always get the proper reading from the switch. | ||
+ | |||
+ | |||
+ | Done with the hardware? Now the code: | ||
+ | |||
+ | void setup() { | ||
+ | // put your setup code here, to run once: | ||
+ | pinMode(7, OUTPUT); | ||
+ | pinMode(8, INPUT); | ||
+ | } | ||
+ | |||
+ | Here, we’re adding pin 8 as an INPUT. The Arduino can now read the voltage on the pin and let us know if it is HIGH or LOW. | ||
+ | |||
+ | Now on to the loop() where there’s some more new things: | ||
+ | |||
+ | void loop() { | ||
+ | // put your main code here, to run repeatedly: | ||
+ | if (digitalRead(8) == HIGH) { | ||
+ | digitalWrite(7, | ||
+ | delay(1000); | ||
+ | digitalWrite(7, | ||
+ | delay(1000); | ||
+ | } else { | ||
+ | digitalWrite(7, | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | This introduces a number of new ideas. Let’s start with [[https:// | ||
+ | |||
+ | We want the LED to blink when the button is pressed, that is, the voltage on the pin is HIGH. We can test this condition with an [[https:// | ||
+ | |||
+ | Note that we’re using == in the if() statement. This is very different than a single =. This is one of those lovely aspects of programming that is going to cause you more headaches moving forward. Sorry about that. The == is a comparison. A single = sets a value. | ||
+ | |||
+ | We can read the code above like this : “Read the value of pin 8, if it is HIGH, blink the LED… “. The [[https:// | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | === Recommended Links === | ||
+ | |||
+ | * [[http:// | ||
+ | * [[http:// | ||
+ | * [[http:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||
+ | |||
+ | === Recommended books === | ||
+ | |||
+ | * Banzi, Massimo, [[https:// | ||
+ | * Igoe, Tom, [[https:// | ||
+ | * Margolis, Michael, [[https:// | ||
+ | * Roberts, Dustyn, [[https:// | ||
+ | |||
+ | |||
+ | === Homework === | ||
+ | * Read the article by [[https:// | ||
+ | * Read //There are no Electrons// (available via NYU Classes resources section => other resources) | ||
+ | * Go through the [[https:// |