Flora MIDI Drum Glove
|
|
|
- Corey Newman
- 9 years ago
- Views:
Transcription
1 Flora MIDI Drum Glove Created by Becky Stern Last updated on :31:07 PM EST
2 Guide Contents Guide Contents Overview Sew Piezos Circuit Diagram Solder FLORA circuit Code Adding MIDI support to Flora Finishing Touches Use It! Adafruit Industries Page 2 of 30
3 Overview Play your favorite synths by finger drumming! Stitch up four piezos into a glove and use FLORA to transmit signals to your favorite music-making software. Before you begin, read the Getting Started with FLORA ( guide! You'll have installed the Adafruit Arduino software by now, OR you can program your FLORA directly from your browser using Codebender ( Fancy! You may also want to brush up on your soldering skillz with our guide ( For this project you will need: FLORA main board ( 4x small piezos ( USB minib cable ( 4x 1M ohm resistors ribbon wire glove ( scrap fabric to match glove pencil soldering iron ( and solder third hand tool ( heat shrink tubing ( wire strippers ( pliers ( and flush diagonal cutters ( heat gun painter's tape or masking tape sewing needle ( and thread scissors Adafruit Industries Page 3 of 30
4 Adafruit Industries Page 4 of 30
5 Sew Piezos Start by ironing out some fabric to match your glove. Cut four small pieces slightly larger than your fingertips, and iron a small hem on one side. Adafruit Industries Page 5 of 30
6 Put your glove on and establish what spots make contact with the table, then mark those spots with a pencil. Thread your needle and double the thread over, then tie a knot at the end of the tails. Stitch through one of your pieces of fabric and affix it to the glove fingertip over the pencil mark with a whip stitch. Be careful not to stitch the glove finger closed! Check periodically to be sure your stitches only pierce the intended layer. Stitch halfway around the pocket, tucking the seam allowance in a you go. Adafruit Industries Page 6 of 30
7 Stick the piezo in the pocket, then finish stitching it shut, leaving the wire sticking out towards the back of the hand. Tie off and cut your thread. Adafruit Industries Page 7 of 30
8 Repeat for the other three piezo pockets, and put your glove on to double check they are tapped when you finger drum. We found the best placement was not necessarily on the pad of the finger, for instance the thumb is around to the side and the pinky is across the first knuckle. Adafruit Industries Page 8 of 30
9 Adafruit Industries Page 9 of 30
10 Circuit Diagram Click to enlarge. Four piezos each have a 1M ohm resistor across them, with the red wires each going to a different analog input (labeled D6, D9, D10, and D12). Adafruit Industries Page 10 of 30
11 Solder FLORA circuit We're going to extend the piezo wires and also attach a pull-down resistor. Start with one piezo and trim the black wire a little shorter than the red wire. Slide on a piece of heat shrink tubing and strip the end of the wire. Wrap the wire end around one of the resistor's leads (doesn't matter which one), and situate the two in the grasp of your third hand tool. Strip one end on a piece of wire, and wrap this end around the same resistor lead. Solder the two wires to the resistor lead. Adafruit Industries Page 11 of 30
12 Once soldered, clip the resistor lead short and shield the junction with the heat shrink tubing you added earlier. Now it's time for the other wire-- wrap the piezo's red wire and the other wire around the other side Adafruit Industries Page 12 of 30
13 of the resistor, remembering to add a piece of heat shrink tubing before soldering. Use a heat gun to shrink both pieces of heat shrink and repeat this process for the three other piezos. Adafruit Industries Page 13 of 30
14 Put the glove on and finesse the wires into a position that reduces strain and lets your hand move. Use painter's tape or masking tape to hold the wires in place as you route the ends towards the analog inputs on FLORA. Adafruit Industries Page 14 of 30
15 Solder each piezo's red wire (or whatever color your red wire became when you extended it) to a different analog input according to the circuit diagram. Solder all the piezo's black wires to ground. Adafruit Industries Page 15 of 30
16 Adafruit Industries Page 16 of 30
17 Before sewing FLORA to the glove, plug in via USB and test your rig using the code on the next page. You'd hate to have to unstitch anything if anything needs re-soldering! Adafruit Industries Page 17 of 30
18 Code There are many ways to trigger events on your computer with FLORA. The following simple sketch generates configurable keyboard presses suitable for use with things like NanoStudio ( or Garage Band: /* Piezo Keyboard glove Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried & Becky Stern for Adafruit Industries. BSD license, all text above must be included in any redistribution */ const int indexfinger = A9; // the piezo is connected to analog pin 9 (aka D9) const int middlefinger = A7; // the piezo is connected to analog pin 7 (aka D6) const int thumb = A10; // the piezo is connected to analog pin 10 (aka D10) const int pinkyfinger = A11; // the piezo is connected to analog pin 11 (aka D12) const int pins[] = {thumb, indexfinger, middlefinger, pinkyfinger}; char Keys[] = {'z','x','c','v'}; boolean currentpressed[] = {false, false, false, false}; const int threshold = 40; // threshold value to decide when the detected sound is a knock or not void setup() { //while (!Serial) Serial.begin(115200); Serial.println("start"); Keyboard.begin(); } void loop() { for (int i=0;i<4;i++) { delay(1); long total1 = 0; long start = millis(); long total = analogread(pins[i]); Adafruit Industries Page 18 of 30
19 long total = analogread(pins[i]); // check if we are sensing that a finger is touching // and that it wasnt already pressed if ((total > threshold) && (! currentpressed[i])) { Serial.print("Key pressed #"); Serial.print(i); Serial.print(" ("); Serial.print(Keys[i]); Serial.println(")"); currentpressed[i] = true; Keyboard.press(Keys[i]); } else if ((total <= threshold) && (currentpressed[i])) { // key was released (no touch, and it was pressed before) Serial.print("Key released #"); Serial.print(i); Serial.print(" ("); Serial.print(Keys[i]); Serial.println(")"); currentpressed[i] = false; } Keyboard.release(Keys[i]); } } delay(5); Adding MIDI support to Flora Advanced users might want to talk straight USB MIDI-- you can do that with FLORA too! You'll have to mod your Adafruit Arduino installation. The following instructions are derived from PhilB's upcoming OONTZ tutorial ( To start, download and install PJRC s Teensyduino package ( an add-on for the Arduino IDE. This brings support for theirteensy line of microcontroller boards, including excellent MIDI support. A graphical installer guides you through setup. Make sure to do the Teensification to the Adafruit Arduino IDE so you get both Flora & Teensy support Installing George Werner s TeeOnArdu package then lets us use the Teensy MIDI library on the FLORA. Ladyada made some changes so this package can use the stock Leonardo/Flora bootloader, saving headaches. Click to download TeeOnArdu Installing TeeOnArdu is a little different from other software or libraries. Start by unzipping the Adafruit Industries Page 19 of 30
20 TeeOnArdu-master.zip file that you downloaded, that much is normal. The unzipped folder that results should contain two items: a README file and a sub-folder called TeeOnArdu. Locate your Arduino sketchbook the folder where your own Arduino code and related files go (not the Arduino application, but the folder containing your personal work). The location is a little different for each operating system: Windows: (home)\my Documents\Arduino Mac: (home)/documents/arduino Linux: (home)/sketchbook Inside the sketchbook, create a new folder called hardware if one does not already exist. Move the TeeOnArdu folder (the one alongside the README, not its parent folder) into this hardware folder. Start the Arduino IDE. Or, if it s already running, exit and restart it. On the Tools Board menu there should be a new item labeled Flora (TeensyCore). Select this. There s still a little song and dance to be done, but it s easier than MIDI The Old Way. Adafruit Industries Page 20 of 30
21 You should have previously selected Flora (TeensyCore) from the Tools Board menu. Now, from the Tools USB Type menu, select Serial. Then unplug and re-plug the USB cable. This resets the FLORA bootloader, and for the next 10 seconds it appears to the system as a serial device. Quickly now from the Tools Serial Port menu, select the port corresponding to the Arduino board. From the Tools USB Type menu, now select MIDI. It s necessary when compiling MIDI code. Load the code below into your Arduino IDE. Before uploading the code to the board, press the mini reset button on the Flora to launch the bootloader again. There s a 10 second window to then click Upload. If you miss it on the first try, just try again! If you return to MIDI after working on other Arduino projects and have problems uploading code, remember to do this Serial-then-MIDI selection rigmarole. (You don t need to do this every time you upload code, just when switching back to MIDI from a different Arduino project.) /* Piezo MIDI glove Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried, Phillip Burgess, & Becky Stern for Adafruit Industries. Adafruit Industries Page 21 of 30
22 Written by Limor Fried, Phillip Burgess, & Becky Stern for Adafruit Industries. BSD license, all text above must be included in any redistribution */ #define LED 7 // Pin for heartbeat LED (shows code is working) #define CHANNEL 1 // MIDI channel number int note; const int indexfinger = A9; // the piezo is connected to analog pin 9 (aka D9) const int middlefinger = A7; // the piezo is connected to analog pin 7 (aka D6) const int thumb = A10; // the piezo is connected to analog pin 10 (aka D10) const int pinkyfinger = A11; // the piezo is connected to analog pin 11 (aka D12) const int pins[] = {thumb, indexfinger, middlefinger, pinkyfinger}; //char Keys[] = {'z','x','c','v'}; boolean currentpressed[] = {false, false, false, false}; const int threshold = 40; // threshold value to decide when the detected sound is a knock or not void setup() { pinmode(led, OUTPUT); // We dont have Serial or Keyboard available in MIDI mode!!! //while (!Serial) //Serial.begin(115200); //Serial.println("start"); //Keyboard.begin(); } void loop() { for (int i=0;i<4;i++) { delay(1); long total1 = 0; long start = millis(); long total = analogread(pins[i]); // check if we are sensing that a finger is touching // and that it wasnt already pressed if ((total > threshold) && (! currentpressed[i])) { //Serial.print("Key pressed #"); Serial.print(i); //Serial.print(" ("); Serial.print(Keys[i]); Serial.println(")"); currentpressed[i] = true; //Keyboard.press(Keys[i]); Adafruit Industries Page 22 of 30
23 //Keyboard.press(Keys[i]); //note = LOWNOTE + (i & 0x0F) * 8; usbmidi.sendnoteon(60+i, 127, CHANNEL); } else if ((total <= threshold) && (currentpressed[i])) { // key was released (no touch, and it was pressed before) //Serial.print("Key released #"); Serial.print(i); //Serial.print(" ("); Serial.print(Keys[i]); Serial.println(")"); currentpressed[i] = false; //Keyboard.release(Keys[i]); usbmidi.sendnoteoff(60+i, 0, CHANNEL); } delay(5); } while(usbmidi.read()); // Discard incoming MIDI messages } Now you ll need software on the computer at the other end of that cable. This requires either a software synthesizer a program that generates sounds using your computer s audio hardware or a MIDI patchbay utility, which forwards the MIDI data to a hardware synthesizer. If you ve done music on your computer before, you probably already have one or both of these tools. Otherwise, there are a ton of options out there, many of them free. For example, on Windows there s the freeware Firebird2. Mac has the very basic SimpleSynth or the soup-to-nuts GarageBand. Even Linux has options. Google around for software synthesizer, "MIDI", free and Windows, Mac or Linux and see what you find. There are so many options, we can t walk you through this for every app or operating system. It s usually pretty straightforward though, we re confident you can find something and get it installed and running. Adafruit Industries Page 23 of 30
24 Finishing Touches Once your glove is functioning properly, it's time to tack everything down. Put the glove on and position FLORA so that the wires don't tug when you make a fist. Tape it down so it stays put before stitching. Adafruit Industries Page 24 of 30
25 Use plain thread to stitch FLORA's unused pads to the glove. On the side where all the wires come in, stitch around the wires instead of through the pads. Tack the wires in place with strategic stitches along their lengths. Adafruit Industries Page 25 of 30
26 Remove the tape and try on your completed drum glove! Adafruit Industries Page 26 of 30
27 Adafruit Industries Page 27 of 30
28 Use It! Your USB cable will be plugged in while you use the drum glove. You may want to grab a USB extension cable for more freedom of movement! For a similar, yet wireless, project, try the 3D Printed Wireless MIDI Controller Guitar ( Adafruit Industries Page 28 of 30
29 Adafruit Industries Page 29 of 30
Cell Phone Charging Purse
Cell Phone Charging Purse Created by Becky Stern Last updated on 2015-02-20 01:00:16 PM EST Guide Contents Guide Contents Overview Prepare USB and Power Supply Create a Charging Shelf Install Coil in Bag
Arduino Lesson 1. Blink
Arduino Lesson 1. Blink Created by Simon Monk Last updated on 2015-01-15 09:45:38 PM EST Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink'
Arduino Lesson 13. DC Motors. Created by Simon Monk
Arduino Lesson 13. DC Motors Created by Simon Monk Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Arduino Code Transistors Other Things to Do 2 3 4 4 4 6 7 9 11 Adafruit Industries
Character LCDs. Created by Ladyada. Last updated on 2013-07-26 02:45:29 PM EDT
Character LCDs Created by Ladyada Last updated on 2013-07-26 02:45:29 PM EDT Guide Contents Guide Contents Overview Character vs. Graphical LCDs LCD Varieties Wiring a Character LCD Installing the Header
PHYS 2P32 Project: MIDI for Arduino/ 8 Note Keyboard
PHYS 2P32 Project: MIDI for Arduino/ 8 Note Keyboard University April 13, 2016 About Arduino: The Board Variety of models of Arduino Board (I am using Arduino Uno) Microcontroller constructd similarly
Adafruit MCP9808 Precision I2C Temperature Sensor Guide
Adafruit MCP9808 Precision I2C Temperature Sensor Guide Created by lady ada Last updated on 2014-04-22 03:01:18 PM EDT Guide Contents Guide Contents Overview Pinouts Power Pins I2C Data Pins Optional Pins
DS1307 Real Time Clock Breakout Board Kit
DS1307 Real Time Clock Breakout Board Kit Created by Tyler Cooper Last updated on 2015-10-15 11:00:14 AM EDT Guide Contents Guide Contents Overview What is an RTC? Parts List Assembly Arduino Library Wiring
Adafruit Proto Shield for Arduino
Adafruit Proto Shield for Arduino Created by lady ada Last updated on 2016-08-04 11:06:30 PM UTC Guide Contents Guide Contents Overview Make it! Lets go! Preparation Prep Tools Parts list Parts List Optional
Tiny Arduino Music Visualizer
Tiny Arduino Music Visualizer Created by Phillip Burgess Last updated on 2014-04-17 09:30:35 PM EDT Guide Contents Guide Contents Overview Wiring Code Troubleshooting Principle of Operation Ideas 2 3 4
Getting Started Guide
Getting Started Guide Overview Launchpad Mini Thank you for buying our most compact Launchpad grid instrument. It may be small, but its 64 pads will let you trigger clips, play drum racks, control your
Arduino Lesson 5. The Serial Monitor
Arduino Lesson 5. The Serial Monitor Created by Simon Monk Last updated on 2013-06-22 08:00:27 PM EDT Guide Contents Guide Contents Overview The Serial Monitor Arduino Code Other Things to Do 2 3 4 7 10
ROCK BAND 3 WIRELESS KEYBOARD:
Music Systems, Inc. ROCK BAND 3 WIRELESS KEYBOARD: MIDI User Guide HMXHW1023 REVISION: 01 Date: 07/16/10 Introduction... 3 What is MIDI?... 3 Features... 3 Getting Started... 4 Control Surface Functions
Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board
Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Abstract This application note is a tutorial of how to use an Arduino UNO microcontroller to
Arduino Lesson 14. Servo Motors
Arduino Lesson 14. Servo Motors Created by Simon Monk Last updated on 2013-06-11 08:16:06 PM EDT Guide Contents Guide Contents Overview Parts Part Qty The Breadboard Layout for 'Sweep' If the Servo Misbehaves
Sending an SMS with Temboo
Sending an SMS with Temboo Created by Vaughn Shinall Last updated on 2015-01-21 01:15:14 PM EST Guide Contents Guide Contents Overview Get Set Up Generate Your Sketch Upload and Run Push to Send Wiring
Building A Computer: A Beginners Guide
Building A Computer: A Beginners Guide Mr. Marty Brandl The following was written to help an individual setup a Pentium 133 system using an ASUS P/I- P55T2P4 motherboard. The tutorial includes the installation
Arduino Lesson 0. Getting Started
Arduino Lesson 0. Getting Started Created by Simon Monk Last updated on 204-05-22 2:5:0 PM EDT Guide Contents Guide Contents Overview Parts Part Qty Breadboard Installing Arduino (Windows) Installing Arduino
About your Kobo ereader...5
Kobo Mini User Guide Table of Contents About your Kobo ereader...5 Anatomy of your Kobo ereader...5 Charging your Kobo ereader...7 Charging your Kobo ereader with a wall adapter...8 Turning your Kobo ereader
STB- 2. Installation and Operation Manual
STB- 2 Installation and Operation Manual Index 1 Unpacking your STB- 2 2 Installation 3 WIFI connectivity 4 Remote Control 5 Selecting Video Mode 6 Start Page 7 Watching TV / TV Guide 8 Recording & Playing
Thank you for downloading this tutorial! Before you get to work, please take the time to read the tutorial thoroughly.
A Basic Knitted Beaded Amulet Bag Please note that this kit is for basic bead knitting, but it does not teach basic yarn knitting. It assumes you are comfortable with basic knitting, casting on and casting
A REST API for Arduino & the CC3000 WiFi Chip
A REST API for Arduino & the CC3000 WiFi Chip Created by Marc-Olivier Schwartz Last updated on 2014-04-22 03:01:12 PM EDT Guide Contents Guide Contents Overview Hardware configuration Installing the library
Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]
Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India [email protected] http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to
GETTING STARTED WITH STUDIO ONE ARTIST
GETTING STARTED WITH STUDIO ONE ARTIST 2009, PreSonus Audio Electronics, Inc. All Rights Reserved. TABLE OF CONTENTS Studio One Artist Features...3 System Requirements...4 Installation and Authorization...5
Martin County Amateur Radio Association. Nightfire Kits 1 LED Torch Kit 270016. Contents. Description
Nightfire Kits 1 LED Torch Kit 270016 1 Contents Nightfire Kits LED Torch Kit 270016... 1 Description... 1 Safety and Assembly of the kit... 6 Required and Useful Tools... 7 Assembly... 8 Checkout and
Set up and Blink - Simulink with Arduino
Set up and Blink - Simulink with Arduino Created by Anuja Apte Last updated on 2015-01-28 06:45:11 PM EST Guide Contents Guide Contents Overview Parts and Software Build the circuit Set up compiler support
TUTORIAL FOR INITIALIZING BLUETOOTH COMMUNICATION BETWEEN ANDROID AND ARDUINO
TUTORIAL FOR INITIALIZING BLUETOOTH COMMUNICATION BETWEEN ANDROID AND ARDUINO some pre requirements by :-Lohit Jain *First of all download arduino software from www.arduino.cc *download software serial
Adafruit's Raspberry Pi Lesson 5. Using a Console Cable. Created by Simon Monk
Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Created by Simon Monk Guide Contents Guide Contents Overview You Will Need Part Software Installation (Mac) Software Installation (Windows) Connect
DIY Wearable Pi with Near-Eye Video Glasses
DIY Wearable Pi with Near-Eye Video Glasses Created by Ruiz Brothers Last updated on 2015-02-20 09:31:15 AM EST Guide Contents Guide Contents Overview 3D Printing Disassembly Assembly Video Configurations
STEELSERIES FREE MOBILE WIRELESS CONTROLLER USER GUIDE
STEELSERIES FREE MOBILE WIRELESS CONTROLLER USER GUIDE INTRODUCTION Thank you for choosing the SteelSeries Free Mobile Controller! This controller is designed by SteelSeries, a dedicated manufacturer of
How to Make a Pogo Pin Test Jig. Created by Tyler Cooper
How to Make a Pogo Pin Test Jig Created by Tyler Cooper Guide Contents Guide Contents Overview Preparation Arduino Shield Jigs The Code Testing Advanced Pogo Jigs Support Forums 2 3 4 6 9 11 12 13 Adafruit
#include <Gamer.h> Gamer gamer; void setup() { gamer.begin(); } void loop() {
#include Gamer gamer; void setup() { gamer.begin(); void loop() { Gamer Keywords Inputs Board Pin Out Library Instead of trying to find out which input is plugged into which pin, you can use
2.2" TFT Display. Created by Ladyada. Last updated on 2014-03-31 12:15:09 PM EDT
2.2" TFT Display Created by Ladyada Last updated on 2014-03-31 12:15:09 PM EDT Guide Contents Guide Contents Overview Connecting the Display Test the Display Graphics Library Bitmaps Alternative Wiring
Adafruit's Raspberry Pi Lesson 5. Using a Console Cable
Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Created by Simon Monk Last updated on 2016-04-12 08:03:49 PM EDT Guide Contents Guide Contents Overview You Will Need Part Software Installation
1.8" TFT Display Breakout and Shield
1.8" TFT Display Breakout and Shield Created by lady ada Last updated on 2015-04-09 03:48:28 PM EDT Guide Contents Guide Contents Overview Breakout Pinouts Breakout Assembly Prepare the header strip: Add
7 Mini Tablet User Guide
7 Mini Tablet User Guide MODEL NUMBER: Powered by SYTABBL7 Wireless Mobile Internet Tablet Getting to Know Your New Tablet: Front View: Back View: Side Angle View: MENU MENU Power Key ON/OFF, Back Button
Board also Supports MicroBridge
This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)
LED Wiring and Connections
LED Wiring and Connections A Handbook of How-to Manuals 2009 usledsupply. All Rights Reserved. Index These step by step how to manuals will give you the foundation necessary to use your new LED lights.
Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter)
Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter) Eric Bell 04/05/2013 Abstract: Serial communication is the main method used for communication
FOLGER TECHNOLOGIES, LLC 2020 i3 3D Printer Kit
FOLGER TECHNOLOGIES, LLC 2020 i3 3D Printer Kit CONFIG GUIDE Rev. A http://www.folgertech.com 2020 Prusa i3 Config Guide Page: 1 / 15 You did it! You built your Folger Tech 2020 i3 Printer and now you
OVERVIEW HARDWARE. Mode buttons. USB Micro socket. Kensington Security Slot. 8x8 playable grid. Mode buttons
OVERVIEW Launchpad Mini is a compact version of the celebrated Novation Launchpad for the ipad generation. 64 three-colour pads enable you to produce and perform music with your ipad by triggering samples
Designing a Schematic and Layout in PCB Artist
Designing a Schematic and Layout in PCB Artist Application Note Max Cooper March 28 th, 2014 ECE 480 Abstract PCB Artist is a free software package that allows users to design and layout a printed circuit
ECEN 1400, Introduction to Analog and Digital Electronics
ECEN 1400, Introduction to Analog and Digital Electronics Lab 4: Power supply 1 INTRODUCTION This lab will span two lab periods. In this lab, you will create the power supply that transforms the AC wall
Adafruit's Raspberry Pi Lesson 5. Using a Console Cable
Adafruit's Raspberry Pi Lesson 5. Using a Console Cable Created by Simon Monk Last updated on 2014-09-15 12:00:13 PM EDT Guide Contents Guide Contents Overview You Will Need Part Software Installation
Adafruit SHT31-D Temperature & Humidity Sensor Breakout
Adafruit SHT31-D Temperature & Humidity Sensor Breakout Created by lady ada Last updated on 2016-06-23 10:13:40 PM EDT Guide Contents Guide Contents Overview Pinouts Power Pins: I2C Logic pins: Other Pins:
Arduino Lesson 17. Email Sending Movement Detector
Arduino Lesson 17. Email Sending Movement Detector Created by Simon Monk Last updated on 2014-04-17 09:30:23 PM EDT Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Arduino Code
Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign
Mbox Basics Guide Version 6.7 for LE Systems on Windows XP or Mac OS X Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA)
IR Communication a learn.sparkfun.com tutorial
IR Communication a learn.sparkfun.com tutorial Available online at: http://sfe.io/t33 Contents Getting Started IR Communication Basics Hardware Setup Receiving IR Example Transmitting IR Example Resources
Document number RS-PRD-00130 Revision 05 Date 20/10/2009 Page 1/30
Date 20/10/2009 Page 1/30 1. Purpose This document describes the field replacement of the footscan plate cable for these models: 2m hi-end plate SN 11/5/xxx 2m pro plate SN 7/5/xxx 0.5m 2003 hi-end plate
If this PDF has opened in Full Screen mode, you can quit by pressing Alt and F4, or press escape to view in normal mode. Click here to start.
You are reading an interactive PDF. If you are reading it in Adobe s Acrobat reader, you will be able to take advantage of links: where text is blue, you can jump to the next instruction. In addition you
FTDI VCP DRIVER (free) (WIN/MAC/LINUX) http://www.ftdichip.com/drivers/vcp.htm
002 - CONNECTING THE PRINTER Now that you have an idea what 3D printing entails, we can continue and connect the printer to your computer. First make sure you have a computer with a decent amount of RAM
How to Make and Apply Bias Binding by Alisa at Making More with Less (Busy Quilt Mom) for Sew Mama Sew
How to Make and Apply Bias Binding by Alisa at Making More with Less (Busy Quilt Mom) for Sew Mama Sew Bias Binding is an easy way to finish off edges and add interesting detail and colour to your sewing
To Install EdiView IP camera utility on Android device, follow the following instructions:
To Install EdiView IP camera utility on Android device, follow the following instructions: To install Ediview application, launch Market. (In your Android device s All apps menu). Click magnifier icon
EARTH PEOPLE TECHNOLOGY SERIAL GRAPH TOOL FOR THE ARDUINO UNO USER MANUAL
EARTH PEOPLE TECHNOLOGY SERIAL GRAPH TOOL FOR THE ARDUINO UNO USER MANUAL The Serial Graph Tool for the Arduino Uno provides a simple interface for graphing data to the PC from the Uno. It can graph up
Tablet and Digital Pen Device
Tablet and Digital Pen Device Wired Tablet (Wired Media Tablet) Wireless Tablet (Media Wireless Tablet) User Manual Windows 7 / Vista / XP Driver Version 5.02 Version:V5.02 Release Date:2011/11 Contents
Assembly and User Guide
1 Amp Adjustable Electronic Load 30V Max, 1 Amp, 20 Watts Powered by: 9V Battery Assembly and User Guide Pico Load is a convenient constant current load for testing batteries and power supplies. The digital
C4DI Arduino tutorial 4 Things beginning with the letter i
C4DI Arduino tutorial 4 Things beginning with the letter i If you haven t completed the first three tutorials, it might be wise to do that before attempting this one. This tutorial assumes you are using
Connecting Arduino to Processing a
Connecting Arduino to Processing a learn.sparkfun.com tutorial Available online at: http://sfe.io/t69 Contents Introduction From Arduino......to Processing From Processing......to Arduino Shaking Hands
Intro to Intel Galileo - IoT Apps GERARDO CARMONA
Intro to Intel Galileo - IoT Apps GERARDO CARMONA IRVING LLAMAS Welcome! Campus Party Guadalajara 2015 Introduction In this course we will focus on how to get started with the Intel Galileo Gen 2 development
RS232/DB9 An RS232 to TTL Level Converter
RS232/DB9 An RS232 to TTL Level Converter The RS232/DB9 is designed to convert TTL level signals into RS232 level signals. This cable allows you to connect a TTL level device, such as the serial port on
Battery Power for LED Pixels and Strips. Created by Phillip Burgess
Battery Power for LED Pixels and Strips Created by Phillip Burgess Guide Contents Guide Contents Overview About Batteries Diode Fix for Alkaline Batteries Powering the Microcontroller Estimating Running
Basics. Mbox 2. Version 7.0
Basics Mbox 2 Version 7.0 Copyright 2005 Digidesign, a division of Avid Technology, Inc. All rights reserved. This guide may not be duplicated in whole or in part without the express written consent of
Per fection star ts here ṬM. Sewing. My Passion. per formance 5.2
Per fection star ts here ṬM Sewing. My Passion. per formance 5.2 per formance 5.2 Through my passion for sewing I reveal my true self. Beautiful fabrics inspire me to let my imagination run free. My creations
PC Tab INSTALLATION MANUAL SECURE-IT, INC. EAST LONGMEADOW, MA 01028. 800-451-7592 / 413-525-7039 (fax) 413-525-8807 http://www.secure-it.
PC Tab INSTALLATION MANUAL SECURE-IT, INC. EAST LONGMEADOW, MA 01028 800-451-7592 / 413-525-7039 (fax) 413-525-8807 http://www.secure-it.com IMPORTANT READ ENTIRE MANUAL BEFORE STARTING!!! System Overview
RGB LED Strips. Created by lady ada. Last updated on 2015-12-07 12:00:18 PM EST
RGB LED Strips Created by lady ada Last updated on 2015-12-07 12:00:18 PM EST Guide Contents Guide Contents Overview Schematic Current Draw Wiring Usage Example Code Support Forums 2 3 5 6 7 10 12 13 Adafruit
Manufactured under license from Dolby laboratories. Dolby and the double-d symbol are trademarks of Dolby Laboratories.
Getting Started Thank you for selecting NETGEAR products. After installing your device, locate the serial number on the label and use it to register your product at https://my.netgear.com. You must register
Thermistor. Created by Ladyada. Last updated on 2013-07-26 02:30:46 PM EDT
Thermistor Created by Ladyada Last updated on 2013-07-26 02:30:46 PM EDT Guide Contents Guide Contents Overview Some Stats Testing a Thermistor Using a Thermistor Connecting to a Thermistor Analog Voltage
Waspmote. Quickstart Guide
Waspmote Quickstart Guide Index Document version: v4.3-11/2014 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction... 3 2. General and safety information... 4 3. Waspmote s Hardware Setup...
User Guide for Windows 10
User Guide for Windows 10 System requirements E10684 First Edition July 2015 To facilitate a smoother transition from your previous operating system, read the system requirements below before upgrading
-ipad 2: Quick Reference Guide-
1 -ipad 2: Quick Reference Guide- The Apple ipad 2 is lighter and has a faster processor than the original ipad. It includes features of the original plus front and rear cameras, advanced photo editing,
TSL2561 Luminosity Sensor
TSL2561 Luminosity Sensor Created by lady ada Last updated on 2015-06-12 12:10:28 PM EDT Guide Contents Guide Contents Overview Wiring the TSL2561 Sensor Using the TSL2561 Sensor Downloads Buy a TSL2561
Electronics and Soldering Notes
Electronics and Soldering Notes The Tools You ll Need While there are literally one hundred tools for soldering, testing, and fixing electronic circuits, you only need a few to make robot. These tools
How to modify a car starter for forward/reverse operation
How to modify a car starter for forward/reverse operation Ok, start by choosing a starter. I took a starter out of an older style Nissan Sentra. I chose this particular starter for two reasons: 1. It was
MIDI Mobilizer. Advanced Guide
MIDI Mobilizer MIDI Memo Recorder Advanced Guide An in-depth guide to the features and functionality of the MIDI Mobilizer hardware and MIDI Memo Recorder application for iphone and ipod touch Electrophonic
LED Origami. Created by Becky Stern
LED Origami Created by Becky Stern Guide Contents Guide Contents Overview Lotus Construction Frog Construction Pond Scene with ITO 2 3 4 16 33 Adafruit Industries http://learn.adafruit.com/led-origami
Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS
Chord Limited Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS -!1 - Cleaning and care instructions: Mojo requires no special care other than common sense. Spray window cleaner (clear type) may be used
N300 WiFi Range Extender WN2000RPT User Manual
N300 WiFi Range Extender WN2000RPT User Manual December 2013 202-11333-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device,
Getting Started... 1. What s included... 1. Setting up Fitbit One on a computer... 2. Mac & PC Requirements... 2
User Manual Table of Contents Getting Started... 1 What s included... 1 Setting up Fitbit One on a computer... 2 Mac & PC Requirements... 2 Installing Fitbit Connect on a computer... 2 Installing Fitbit
DIY Pocket LED Gamer - Tiny Tetris!
DIY Pocket LED Gamer - Tiny Tetris! Created by Jianan Li Last updated on 2014-12-11 11:00:38 AM EST Guide Contents Guide Contents Overview Menu Brightness Adjust Tetris Snake Paint Parts & Tools Parts
SainSmart UNO R3 Starter Kit
SainSmart UNO R3 Starter Kit //SainSmart UNO R3 The SainSmart UNO R3 is one of several development boards based on the ATmega328-AU. We like it mainly because of its extensive support network and its versatility.
Surveillance System Using Wireless Sensor Networks
Surveillance System Using Wireless Sensor Networks Dan Nguyen, Leo Chang Computer Engineering, Santa Clara University Santa Clara, California, USA [email protected] [email protected] Abstract The
QUICK SETUP GUIDE: USB-MIDI Cubase AI4 / Motif XS Editor / Windows
QUICK SETUP GUIDE: USB-MIDI Cubase AI4 / Motif XS Editor / Windows Install _ Install Cubase AI4 on your computer. Update to the latest version at www.steinberg.net Download and Install _ The Motif XS Operating
Mini PC Quick Start Guide
Mini PC Quick Start Guide For model: TBS802A, TBS802B, TBS8210, TBS8220, TBS8240 Product Overview: TBS provides series mini size computers for fulfilling personal multimedia and work needs. Most such mini
Pocket Verifier Quick Start HTC Touch Diamond
Pocket Verifier Quick Start HTC Touch Diamond Contents INTRODUCTION... 1 INSTALLING THE POCKET VERIFIER SOFTWARE... 2 SETTING UP THE POCKET SPECTRUM...3 SETTING UP YOU MERCHANT ACCOUNT... 7 HOW TO SWIPE
USER GUIDE Version 2.0
USER GUIDE Version 2.0 TABLE of CONTENTS Introduction... 3 Hardware Overview... 3 Software Overview... 4 DAYSHIFT Panel... 5 Settings Panel... 6 Setup Tab... 6 Configure... 6 Show User Guide... 6 Preview
SwannSecure Wi-Fi Monitoring System
EN SwannSecure Wi-Fi Monitoring System Setup Wizard Quick Start Guide QW470KIT050115E Swann 2015 1 Welcome The Setup Wizard automatically launches the first time you turn on the Wi-Fi Monitor and walks
cs281: Introduction to Computer Systems Lab08 Interrupt Handling and Stepper Motor Controller
cs281: Introduction to Computer Systems Lab08 Interrupt Handling and Stepper Motor Controller Overview The objective of this lab is to introduce ourselves to the Arduino interrupt capabilities and to use
The easy way to accept EFTPOS, Visa and MasterCard payments on the spot. Mobile Users... 2. Charging your PayClip. 2. Downloading the PayClip app.
PayClip User Guide The easy way to accept EFTPOS, Visa and MasterCard payments on the spot. Contents Getting started made easy 2 Information for Merchants....................................................2
Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/
Super-Fast Guide to Audio Editing Audacity is a free, totally free, audio editing program. Get it here: http://audacity.sourceforge.net/ Installing Audacity 1. Download Audacity to your own computer. 2.
GETTING STARTED TABLE OF CONTENTS
imovie 11 Tutorial GETTING STARTED imovie 11 is consumer-level digital video editing software for Macintosh. You can use imovie 11 to edit the footage you film with digital video cameras and HD video cameras.
Arduino Wifi shield And reciever. 5V adapter. Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the shield:
the following parts are needed to test the unit: Arduino UNO R3 Arduino Wifi shield And reciever 5V adapter Connecting wifi module on shield: Make sure the wifi unit is connected the following way on the
Google Drive: Access and organize your files
Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or
Arduino Lesson 9. Sensing Light
Arduino Lesson 9. Sensing Light Created by Simon Monk Last updated on 2014-04-17 09:46:11 PM EDT Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Photocells Arduino Code Other Things
Programming the Arduino
Summer University 2015: Programming the Arduino Alexander Neidhardt (FESG) [email protected] SU-Arduino-Prog-Page1 Programming the Arduino - The hardware - The programming environment - Binary world,
Nighthawk AC1900 WiF Range Extender
Nighthawk AC1900 WiF Range Extender Model EX7000 User Manual December 2014 202-11469-01 350 East Plumeria Drive San Jose, CA 95134 USA Nighthawk AC1900 WiF Range Extender Support Thank you for selecting
Troubleshooting Tips Lifestyle SA-2 & SA-3 Amplifier. Troubleshooting Tips
Troubleshooting Tips Lifestyle SA-2 & SA-3 Amplifier Refer to the Lifestyle SA-2 & SA-3 Amplifier service manuals, part number 271720 for schematics, PCB layouts and parts lists. Preventative Repair Measures
KOBO EREADER USER GUIDE, JUNE 2011
KOBO EREADER USER GUIDE, JUNE 2011 TABLE OF CONTENTS Section 1 - Getting Started ereader basics... 3 Reading a book... 7 Adding books from the Kobo Store... 10 Using Kobo Desktop with your ereader... 12
All About Arduino Libraries
All About Arduino Libraries Created by William Earl Last updated on 2014-04-17 08:45:25 AM EDT Guide Contents Guide Contents Arduino Libraries Standard Libraries User Installed Libraries Where to Install
USB HSPA Modem. User Manual
USB HSPA Modem User Manual Congratulations on your purchase of this USB HSPA Modem. The readme file helps you surf the Internet, send and receive SMS, manage contacts and use many other functions with
AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735
AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735 Experience Level: Intermediate Time Required: 1-2 Hours This project automatically records phone calls. The program, along with the adapter records each
Unlock Android Phone with Wearable NFC
Unlock Android Phone with Wearable NFC Created by Becky Stern Last updated on 2015-02-19 04:30:18 PM EST Guide Contents Guide Contents Overview NFC Tag Ring NFC Manicure Mod Android Installation NFC +
