Step 1. Wire up and test the LED Panels

Size: px
Start display at page:

Download "Step 1. Wire up and test the LED Panels"

Transcription

1 Modified Art with LED Matrix Build Instructions LED Matrix panels incorporated into art. Step 1. Wire up and test the LED Panels First wire up the LED panels to the Arduino to ensure all is working. Connect the two middle IDC connectors together with the supplied cable. The IDC connector on the top left goes to the Arduino. Hereʼs a close up of the IDC connector in the top left that goes to the Arduino. VCC goes to the Arduino VCC GND goes to the Arduino GND DATA goes to Arduino Digital Pin 2 WR goes to Arduino Digital Pin 3 CS0 goes to Arduino Digital Pin 4 CS1 goes to Arduino Digital Pin 5

2 The 10K Potentiometer goes to Arduino Analog Pin 0. For this project, a Seeeduino was used which is just an Arduino clone. After everything is wired, download this Arduino sketch and upload to the Arduino. Youʼll also need the Arduino library for the HT1632 LED panels written by the folks at Adafruit. If all goes well, youʼll see the LED Matrix light up with the text after uploading the code to the Arduino. The potentiometer is used to toggle different text modes for the LED panels. You can see the mode changes in this part of the code: initialpot = analogread(potpin); Serial.print("initial pot value= "); Serial.println(initialPot); range = map(initialpot, 0, 1023, 0, 6); //splits it into 4 modes delay(50); switch (range) { case 0: mode = 0; writematrix("thinking", "mode"); delay(1000); case 1: mode = 1; writematrix("numbers", "mode");

3 delay(1000); } case 2: mode = 2; writematrix("conspire", "mode"); delay(1000); case 3: mode = 3; writematrix("verbage", "mode"); t = 300; //for looking up the text, start the counter at 300 delay(1000); case 4: mode = 4; writematrix("haiku", "mode"); t = 72; delay(1000); case 5: mode = 5; writematrix("maker", "mode"); t = 432; delay(1000); } //end case

4 Step 2. Permanent Installation Now use the Arduino protoshield and wire things up for a more permanent installation. I always like to hot glue down the wires just to ensure they donʼt come loose later.

5

6 Apply some hot glue on the outside of the LED Matrixes, you donʼt need apply on the inside, the outside edges are good enough. Now hereʼs the tricky part. Youʼll need to experiment and find a part of your picture that the LEDs will shine through. For example in this case, the LEDs did not shine through the black part of the picture but did shine through the orange part.

7 After youʼve found a good spot, go ahead and hot glue it to the picture canvas. For an artsy effect, I left the LED panels slightly offset from one another. Youʼll also want to secure the Arduino board as well. In this case, I just hot glued the Arduino to a piece of acrylic and then glued the acrylic to the inside of the frame.

8

9 Step 3. Tweak the Code for your Needs Just have a look at the code and you can see where to modify and put whatever text you want. Keep in mind that 8 characters is the maximum length and the library does not support scrolling so 8 characters is the max. The library also supports a larger font in which case the maximum characters is 4. In the code below, the first line is the text on the top half of the LED Matrix and the second line is for the text on the bottom half of the LED Matrix. Hereʼs the meaning of the third line (the ones in red). 1: A short delay with small font 2: A short delay with large font 3: A longer delay signifying a new saying (haiku in this case) has started with small font 4: A longer delay signifying a new saying (haiku in this case) has started with large font prog_char string_72[] PROGMEM = "jet lag"; prog_char string_73[] PROGMEM = "she"; prog_char string_74[] PROGMEM = "1"; prog_char string_75[] PROGMEM = "unravels"; prog_char string_76[] PROGMEM = "his half"; prog_char string_77[] PROGMEM = "1"; prog_char string_78[] PROGMEM = "finished"; prog_char string_79[] PROGMEM = "sweater"; prog_char string_80[] PROGMEM = "3"; prog_char string_81[] PROGMEM = "thoughts"; prog_char string_82[] PROGMEM = "unspool"; prog_char string_83[] PROGMEM = "1"; prog_char string_84[] PROGMEM = "with the"; prog_char string_85[] PROGMEM = "white"; prog_char string_86[] PROGMEM = "1"; prog_char string_87[] PROGMEM = " line "; prog_char string_88[] PROGMEM = "road"; prog_char string_89[] PROGMEM = "1"; prog_char string_90[] PROGMEM = "trip"; prog_char string_91[] PROGMEM = ""; prog_char string_92[] PROGMEM = "4"; prog_char string_93[] PROGMEM = "half the"; prog_char string_94[] PROGMEM = "sky a"; prog_char string_95[] PROGMEM = "1"; prog_char string_96[] PROGMEM = "deeper"; prog_char string_97[] PROGMEM = "blue"; prog_char string_98[] PROGMEM = "1"; prog_char string_99[] PROGMEM = "mid-life"; prog_char string_100[] PROGMEM = ""; prog_char string_101[] PROGMEM = "1"; prog_char string_102[] PROGMEM = "birthday"; prog_char string_103[] PROGMEM = ""; prog_char string_104[] PROGMEM = "3"; prog_char string_105[] PROGMEM = "liquid"; prog_char string_106[] PROGMEM = "sky"; prog_char string_107[] PROGMEM = "1"; prog_char string_108[] PROGMEM = "a steel"; prog_char string_109[] PROGMEM = "bucket"; prog_char string_110[] PROGMEM = "1"; prog_char string_111[] PROGMEM = "hits the"; prog_char string_112[] PROGMEM = "well"; prog_char string_113[] PROGMEM = "1"; prog_char string_114[] PROGMEM = "water"; prog_char string_115[] PROGMEM = "";

10 prog_char string_116[] PROGMEM = "3"; prog_char string_117[] PROGMEM = "end of"; prog_char string_118[] PROGMEM = ""; prog_char string_119[] PROGMEM = "1"; prog_char string_120[] PROGMEM = "day"; prog_char string_121[] PROGMEM = ""; prog_char string_122[] PROGMEM = "2"; prog_char string_123[] PROGMEM = "three"; prog_char string_124[] PROGMEM = "snails"; prog_char string_125[] PROGMEM = "1"; prog_char string_126[] PROGMEM = "devour"; prog_char string_127[] PROGMEM = ""; prog_char string_128[] PROGMEM = "1"; prog_char string_129[] PROGMEM = "one"; prog_char string_130[] PROGMEM = ""; prog_char string_131[] PROGMEM = "2"; prog_char string_132[] PROGMEM = "blossom"; prog_char string_133[] PROGMEM = ""; prog_char string_134[] PROGMEM = "3";

Programming 2 Servos. Learn to connect and write code to control two servos.

Programming 2 Servos. Learn to connect and write code to control two servos. Programming 2 Servos Learn to connect and write code to control two servos. Many students who visit the lab and learn how to use a Servo want to use 2 Servos in their project rather than just 1. This lesson

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

Adafruit 16-Channel Servo Driver with Arduino

Adafruit 16-Channel Servo Driver with Arduino Adafruit 16-Channel Servo Driver with Arduino Created by Bill Earl Last updated on 2015-09-29 06:19:37 PM EDT Guide Contents Guide Contents Overview Assembly Install the Servo Headers Solder all pins Add

More information

Programming a Servo. Servo. Red Wire. Black Wire. White Wire

Programming a Servo. Servo. Red Wire. Black Wire. White Wire Programming a Servo Learn to connect wires and write code to program a Servo motor. If you have gone through the LED Circuit and LED Blink exercises, you are ready to move on to programming a Servo. A

More information

TIMESQUARE Wordclock. Created by Andy Doro. Last updated on :51:57 PM UTC

TIMESQUARE Wordclock. Created by Andy Doro. Last updated on :51:57 PM UTC TIMESQUARE Wordclock Created by Andy Doro Last updated on 2018-08-22 03:51:57 PM UTC Guide Contents Guide Contents Overview Create Faceplate Laser cutting 3D printing Uploading Code Marquee Binary Moon

More information

Grove - Infrared Temperature Sensor

Grove - Infrared Temperature Sensor Grove - Infrared Temperature Sensor Introduction 3.3V 5.0V Analog The Infrared temperature sensor is a non-contact temperature measure model. It is composed of 116 elements of thermocouple in series on

More information

Our project goal was to build a labyrinth marble maze out of Acrylic, MDF, 3D Printed ABS Plastic, and machined Aluminum and Steel.

Our project goal was to build a labyrinth marble maze out of Acrylic, MDF, 3D Printed ABS Plastic, and machined Aluminum and Steel. Our project goal was to build a labyrinth marble maze out of Acrylic, MDF, 3D Printed ABS Plastic, and machined Aluminum and Steel. We started off by designing the entire game in Solidworks. We designed

More information

Milli Developer Kit Reference Application Published on Silver Spring Networks STAGE (

Milli Developer Kit Reference Application Published on Silver Spring Networks STAGE ( Milli Developer Kit Example Application PART 1 Example CoAP Server Sensor Implementation With The Milli Dev Kit Get the Milli Developer Kit Temperature Sensor Reference Application on GitHub [1] This reference

More information

PSoC and Arduino Calculator

PSoC and Arduino Calculator EGR 322 Microcontrollers PSoC and Arduino Calculator Prepared for: Dr. Foist Christopher Parisi (390281) Ryan Canty (384185) College of Engineering California Baptist University 05/02/12 TABLE OF CONTENTS

More information

CPSC 226 Lab Four Spring 2018

CPSC 226 Lab Four Spring 2018 CPSC 226 Lab Four Spring 2018 Directions. This lab is a quick introduction to programming your Arduino to do some basic internal operations and arithmetic, perform character IO, read analog voltages, drive

More information

Internet of Things with Arduino and the CC3000

Internet of Things with Arduino and the CC3000 Internet of Things with Arduino and the CC3000 WiFi chip In this guide, we are going to see how to connect a temperature & humidity sensor to an online platform for connected objects, Xively. The sensor

More information

Coding with Arduino to operate the prosthetic arm

Coding with Arduino to operate the prosthetic arm Setup Board Install FTDI Drivers This is so that your RedBoard will be able to communicate with your computer. If you have Windows 8 or above you might already have the drivers. 1. Download the FTDI driver

More information

With The Arduino Part 1 Robotshop Robot Store

With The Arduino Part 1 Robotshop Robot Store We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with with the arduino part

More information

Stainless Instrument Cluster Cover Installation MK1

Stainless Instrument Cluster Cover Installation MK1 Stainless Instrument Cluster Cover Installation MK1 Stainless Instrument Cluster Cover Installation MK1 The installation of an instrument cluster cover in a MK1/NA MX5 requires the removal of the 1. binnacle,

More information

An Introduction to E-Textiles

An Introduction to E-Textiles An Introduction to E-Textiles Class Logistics In this class, students learn to create active and responsive textiles embedded with microcontrollers, electroluminescent wire, muscle wire, pneumatics, and/or

More information

Peek-a-BOO Kit JAMECO PART NO / / Experience Level: Beginner Time Required: 1+ hour

Peek-a-BOO Kit JAMECO PART NO / / Experience Level: Beginner Time Required: 1+ hour Peek-a-BOO Kit JAMECO PART NO. 2260076/2260084/2260092 Experience Level: Beginner Time Required: 1+ hour Make a ghost that reacts to an approaching object in the room. When idle, the ghost will keep its

More information

Project 27 Joystick Servo Control

Project 27 Joystick Servo Control Project 27 Joystick Servo Control For another simple project, let s use a joystick to control the two servos. You ll arrange the servos in such a way that you get a pan-tilt head, such as is used for CCTV

More information

How To Make An Artificial Deckle Edge using the Dual Edge Ripper

How To Make An Artificial Deckle Edge using the Dual Edge Ripper How To Make An Artificial Deckle Edge using the Dual Edge Ripper Artists love the look of a deckle edge. Hand made papers can be made with deckled edges on all four sides, but mould made papers can only

More information

MAE106 Laboratory Exercises Lab # 1 - Laboratory tools

MAE106 Laboratory Exercises Lab # 1 - Laboratory tools MAE106 Laboratory Exercises Lab # 1 - Laboratory tools University of California, Irvine Department of Mechanical and Aerospace Engineering Goals To learn how to use the oscilloscope, function generator,

More information

TWEAK THE ARDUINO LOGO

TWEAK THE ARDUINO LOGO TWEAK THE ARDUINO LOGO Using serial communication, you'll use your Arduino to control a program on your computer Discover : serial communication with a computer program, Processing Time : 45 minutes Level

More information

WIND VANE THIES COMPACT

WIND VANE THIES COMPACT WIND VANE THIES COMPACT ORDER - N O ELECTRICAL OUTPUT ELECTRICAL SUPPLY HEATING SUPPLY MODEL IN EOL MANAGER 4.3129.00.712 Pot: 2 kω 4.3129.10.712 Pot: 2 kω 4.3129.00.012A 4.3129.10.012A Pot: 2 kω Pot:

More information

User Manual Rev. 1811

User Manual Rev. 1811 User Manual Rev. 1811 LDP-VRM 025-12 CA 1 Remark: Please read all instructions before powering up the device. Please see chapter Power Dissipation for more details about thermal power losses during operation.

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

How To Teach Your Teenagers About Gratitude With These 5 Hands-on Activities

How To Teach Your Teenagers About Gratitude With These 5 Hands-on Activities How To Teach Your Teenagers About Gratitude With These 5 Hands-on Activities By Jen 23 Comments Disclosure: I may receive commissions for purchases made through links in this post. Teaching your teenagers

More information

Bill of Materials: PWM Stepper Motor Driver PART NO

Bill of Materials: PWM Stepper Motor Driver PART NO PWM Stepper Motor Driver PART NO. 2183816 Control a stepper motor using this circuit and a servo PWM signal from an R/C controller, arduino, or microcontroller. Onboard circuitry limits winding current,

More information

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K.

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Roberts Page 1 See Appendix A, for Licensing Attribution information

More information

Initial Power-Up Tests

Initial Power-Up Tests Initial Power-Up Tests The signal generator will not function properly until the blank EEPROM has been programmed with a set of default values. The CPU will accomplish this task if the RxTx control line

More information

Assembly Instructions

Assembly Instructions Assembly Instructions Thank you for downloading this paper craft model of the Plum blossoms and a Japanese bush warbler. By matching the names and numbered parts in the instructions, you and your family

More information

Community College of Allegheny County Unit 7 Page #1. Analog to Digital

Community College of Allegheny County Unit 7 Page #1. Analog to Digital Community College of Allegheny County Unit 7 Page #1 Analog to Digital "Engineers can't focus just on technology; they need to develop their professional skills-things like presenting yourself, speaking

More information

The wiring is relatively simple. You should put the module on one of the compatible Arduinos. The following are compatible:

The wiring is relatively simple. You should put the module on one of the compatible Arduinos. The following are compatible: Welcome! And thank you for purchasing our AZ-Delivery Data Logger module for the Arduino. On the following pages, we will take you through the first steps of the installation process on the Arduino. We

More information

Step 1: Getting to know your Rain Sensor: About This Instructable views. 115 favorites

Step 1: Getting to know your Rain Sensor: About This Instructable views. 115 favorites Explore (/tag/type-id/) Publish Login (/account/login/) (/about/create.jsp) Sign Up (/account/gopro) Classes (/classes/) Featured: (/id/intel/) Intel IoT (/id/intel/) (/tag/type-id/category-technology/channel-leds/)

More information

100UF CAPACITOR POTENTIOMETER SERVO MOTOR MOTOR ARM. MALE HEADER PIN (3 pins) INGREDIENTS

100UF CAPACITOR POTENTIOMETER SERVO MOTOR MOTOR ARM. MALE HEADER PIN (3 pins) INGREDIENTS 05 POTENTIOMETER SERVO MOTOR MOTOR ARM 100UF CAPACITOR MALE HEADER PIN (3 pins) INGREDIENTS 63 MOOD CUE USE A SERVO MOTOR TO MAKE A MECHANICAL GAUGE TO POINT OUT WHAT SORT OF MOOD YOU RE IN THAT DAY Discover:

More information

Actuator ID12. Product Data Sheet Feature

Actuator ID12. Product Data Sheet   Feature Product Data Sheet www.moteck.com Actuator ID12 ID12 has the same performance of load capability, speed, and power consumption as ID1. However, ID12 features its tetragonal outer tube, which makes it easily

More information

THE INPUTS ON THE ARDUINO READ VOLTAGE. ALL INPUTS NEED TO BE THOUGHT OF IN TERMS OF VOLTAGE DIFFERENTIALS.

THE INPUTS ON THE ARDUINO READ VOLTAGE. ALL INPUTS NEED TO BE THOUGHT OF IN TERMS OF VOLTAGE DIFFERENTIALS. INPUT THE INPUTS ON THE ARDUINO READ VOLTAGE. ALL INPUTS NEED TO BE THOUGHT OF IN TERMS OF VOLTAGE DIFFERENTIALS. THE ANALOG INPUTS CONVERT VOLTAGE LEVELS TO A NUMERICAL VALUE. PULL-UP (OR DOWN) RESISTOR

More information

ASCOM EF Lens Controller

ASCOM EF Lens Controller ASCOM EF Lens Controller ASCOM EF Lens Controller control unit for Canon EF/EF-S lenses. It allows you to control lens using the ASCOM platform tools. Features (supported by driver): focus control; aperture

More information

PreLab 6 PWM Design for H-bridge Driver (due Oct 23)

PreLab 6 PWM Design for H-bridge Driver (due Oct 23) GOAL PreLab 6 PWM Design for H-bridge Driver (due Oct 23) The overall goal of Lab6 is to demonstrate a DC motor controller that can adjust speed and direction. You will design the PWM waveform and digital

More information

Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit!

Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit! Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit! Well, now what? The focus of this guide is to aid you in turning that box of parts in front of you into a fully functional prototyping

More information

Workshop 9: First steps in electronics

Workshop 9: First steps in electronics King s Maths School Robotics Club Workshop 9: First steps in electronics 1 Getting Started Make sure you have everything you need to complete this lab: Arduino for power supply breadboard black, red and

More information

ELEC3106 Electronics. Lab 3: PCB EMI measurements. Objective. Components. Set-up

ELEC3106 Electronics. Lab 3: PCB EMI measurements. Objective. Components. Set-up ELEC3106 Electronics Lab 3: PCB EMI measurements Objective The objective of this laboratory session is to give the students a good understanding of critical PCB level Electromagnetic Interference phenomena

More information

[ASSEMBLY INSTRUCTIONS]

[ASSEMBLY INSTRUCTIONS] Seed Starter Kit P16419 Stephen Piatkowski Cheyo Rogers Shimi Ibrahim Chidum Okoye This manual contains the parts list, machining/manufacturing instructions as well as the assembly instructions needed

More information

Published in Scrapbook Industry News, Platinum Edition, October 2003 issue

Published in Scrapbook Industry News, Platinum Edition, October 2003 issue Published in Scrapbook Industry News, Platinum Edition, October 2003 issue Scrapbooking in the 21st Century The Next Big Trend by Linda Sattgast Thereʼs a new phrase being bandied about in the scrapbooking

More information

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE LABORATORY 7: IR SENSORS AND DISTANCE DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOAL: This section will introduce

More information

3. Ready-to-Make Projects

3. Ready-to-Make Projects 3. Ready-to-Make Projects Ready-to-Make projects overview Cricut Design Space features ready-to-make projects created by professional artists. These projects include everything from home décor to fashion

More information

Setup Download the Arduino library (link) for Processing and the Lab 12 sketches (link).

Setup Download the Arduino library (link) for Processing and the Lab 12 sketches (link). Lab 12 Connecting Processing and Arduino Overview In the previous lab we have examined how to connect various sensors to the Arduino using Scratch. While Scratch enables us to make simple Arduino programs,

More information

Arduino Lesson 1. Blink. Created by Simon Monk

Arduino Lesson 1. Blink. Created by Simon Monk Arduino Lesson 1. Blink Created by Simon Monk Guide Contents Guide Contents Overview Parts Part Qty The 'L' LED Loading the 'Blink' Example Saving a Copy of 'Blink' Uploading Blink to the Board How 'Blink'

More information

BRUSHLESS DC MOTOR FAMILY

BRUSHLESS DC MOTOR FAMILY BRUSHLESS DC MOTOR FAMILY Series NT HST Geared Brushless DC Permanent Magnet Motor The NT HST is designed to provide: Fast dynamic response High power density Compact package size Long life ball bearing

More information

Singing Christmas Tree Family

Singing Christmas Tree Family Singing Christmas Tree Family An Installation Guide Updated 8/6/14 Unpack the contents from the boxes. Ensure that you have all of the items that you ordered. The Singing Tree Family products should come

More information

Wood Case for Raspberry Pi 3

Wood Case for Raspberry Pi 3 Wood Case for Raspberry Pi 3 Created by Ruiz Brothers Last updated on 2018-08-22 04:00:10 PM UTC Guide Contents Guide Contents Overview CNC Milling Enclosures CAD to CAM Parts & Tools List Design Designing

More information

Module: Arduino as Signal Generator

Module: Arduino as Signal Generator Name/NetID: Teammate/NetID: Module: Laboratory Outline In our continuing quest to access the development and debugging capabilities of the equipment on your bench at home Arduino/RedBoard as signal generator.

More information

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved.

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved. Lab 7: The Op Amp Laboratory Objectives: 1) To introduce the operational amplifier or Op Amp 2) To learn the non-inverting mode 3) To learn the inverting mode 4) To learn the differential mode Before You

More information

Sweep / Function Generator User Guide

Sweep / Function Generator User Guide I. Overview Sweep / Function Generator User Guide The Sweep/Function Generator as developed by L. J. Haskell was designed and built as a multi-functional test device to help radio hobbyists align antique

More information

Dual Band Filter Assembly Manual

Dual Band Filter Assembly Manual Dual Band Filter Assembly Manual 12 January 2018 Rev D Version Theory of Operation: The purpose of a Bandpass Filter is to filter out or reject all unwanted signals. The original KN-Q7A Receive Filter

More information

LEARN ARDUINO SENSORS ALL SENSORS DESCRIPTION APPLICATION SPECIFICATIONS EXAMPLE CODES NOTES DOWNLOADS DHT11, DHT22 AND AM2302 SENSORS ADAFRUIT

LEARN ARDUINO SENSORS ALL SENSORS DESCRIPTION APPLICATION SPECIFICATIONS EXAMPLE CODES NOTES DOWNLOADS DHT11, DHT22 AND AM2302 SENSORS ADAFRUIT LEARN ARDUINO SENSORS ALL SENSORS DESCRIPTION APPLICATION SPECIFICATIONS EXAMPLE CODES NOTES LEARN ARDUINO SENSORS ALL PDF ARDUINO - WIKIPEDIA DOWNLOADS DHT11, DHT22 AND AM2302 SENSORS ADAFRUIT 1 / 5 2

More information

Acoustic Guitar Collection Userʼs Guide StrumMaker III update 10/20/ Indiginus. with StrumMaker III. by Indiginus for Kontakt 3

Acoustic Guitar Collection Userʼs Guide StrumMaker III update 10/20/ Indiginus. with StrumMaker III. by Indiginus for Kontakt 3 Acoustic Guitar Collection Userʼs Guide StrumMaker III update 10/20/10 2010 Indiginus with StrumMaker III by Indiginus for Kontakt 3 Installation Just drag the AGC folder to your sample drive (or wherever

More information

Adafruit 16-channel PWM/Servo Shield

Adafruit 16-channel PWM/Servo Shield Adafruit 16-channel PWM/Servo Shield Created by lady ada Last updated on 2018-08-22 03:36:11 PM UTC Guide Contents Guide Contents Overview Assembly Shield Connections Pins Used Connecting other I2C devices

More information

Lesson 3: Arduino. Goals

Lesson 3: Arduino. Goals Introduction: This project introduces you to the wonderful world of Arduino and how to program physical devices. In this lesson you will learn how to write code and make an LED flash. Goals 1 - Get to

More information

3-lead Muscle / Electromyography Sensor for Microcontroller Applications

3-lead Muscle / Electromyography Sensor for Microcontroller Applications 3-lead Muscle / Electromyography Sensor for Microcontroller Applications MyoWare Muscle Sensor (AT-04-001) DATASHEET FEATURES NEW - Wearable Design NEW - Single Supply +3.1V to +5.9V Polarity reversal

More information

Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink

Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink By the end of this session: You will know how to use an Arduino

More information

Internet of Things Student STEM Project Jackson High School. Lesson 2: Arduino and LED

Internet of Things Student STEM Project Jackson High School. Lesson 2: Arduino and LED Internet of Things Student STEM Project Jackson High School Lesson 2: Arduino and LED Lesson 2: Arduino and LED Time to complete Lesson 60-minute class period Learning objectives Students learn about Arduino

More information

Fodera/Pope Internal Preamp Wiring and Jumper settings instructions Wiring the pickups to the preamp For preamps built after 9/01/09

Fodera/Pope Internal Preamp Wiring and Jumper settings instructions Wiring the pickups to the preamp For preamps built after 9/01/09 Fodera/Pope Internal Preamp Wiring and Jumper settings instructions Wiring the pickups to the preamp For preamps built after 9/01/09 The Fodera preamp now uses convenient screw terminals for the connection

More information

Temposonics. E-Series Model ER. Magnetostrictive, Absolute, Non-contact Linear-Position Sensors. Analog and Start/Stop Outputs.

Temposonics. E-Series Model ER. Magnetostrictive, Absolute, Non-contact Linear-Position Sensors. Analog and Start/Stop Outputs. Temposonics Magnetostrictive, Absolute, Non-contact Linear-Position Sensors Analog and Start/Stop Outputs SENSORS Document Part Number: 550996 Revision E Data Sheet FEATURES Linear, Absolute Measurement

More information

Community College of Allegheny County Unit 4 Page #1. Timers and PWM Motor Control

Community College of Allegheny County Unit 4 Page #1. Timers and PWM Motor Control Community College of Allegheny County Unit 4 Page #1 Timers and PWM Motor Control Revised: Dan Wolf, 3/1/2018 Community College of Allegheny County Unit 4 Page #2 OBJECTIVES: Timers: Astable and Mono-Stable

More information

Analog Feedback Servos

Analog Feedback Servos Analog Feedback Servos Created by Bill Earl Last updated on 2018-01-21 07:07:32 PM UTC Guide Contents Guide Contents About Servos and Feedback What is a Servo? Open and Closed Loops Using Feedback Reading

More information

Introduction.

Introduction. Introduction At Photobooks Express, it s our aim to go that extra mile to deliver excellent service, products and quality. Our fresh, dynamic and flexible culture enables us to stand above the rest and

More information

Experiment 5: Basic Digital Logic Circuits

Experiment 5: Basic Digital Logic Circuits ELEC 2010 Laboratory Manual Experiment 5 In-Lab Procedure Page 1 of 5 Experiment 5: Basic Digital Logic Circuits In-Lab Procedure and Report (30 points) Before starting the procedure, record the table

More information

Capacitive Touch with Conductive Fabric & Flora

Capacitive Touch with Conductive Fabric & Flora Capacitive Touch with Conductive Fabric & Flora Created by Becky Stern Last updated on 2015-02-20 01:17:52 PM EST Guide Contents Guide Contents Overview Tools & supplies Wiring the circuit Code Adding

More information

StenBOT Robot Kit. Stensat Group LLC, Copyright 2018

StenBOT Robot Kit. Stensat Group LLC, Copyright 2018 StenBOT Robot Kit 1 Stensat Group LLC, Copyright 2018 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and documentation. There is a 90 day warranty for the

More information

Breadboard Arduino Compatible Assembly Guide

Breadboard Arduino Compatible Assembly Guide (BBAC) breadboard arduino compatible Breadboard Arduino Compatible Assembly Guide (BBAC) A Few Words ABOUT THIS KIT The overall goal of this kit is fun. Beyond this, the aim is to get you comfortable using

More information

Stenoboard Assembly Instructions Full kit with assembled electronics Step 1 - Check that nothing is missing

Stenoboard Assembly Instructions Full kit with assembled electronics Step 1 - Check that nothing is missing Stenoboard Assembly Instructions Full kit with assembled electronics Step 1 - Check that nothing is missing Parts: 1x Left frame 1x Right frame x Consonants keys x Vowels keys x Number keys 4x Pre-assembled

More information

TheSorceres. (FantasyVersion)

TheSorceres. (FantasyVersion) TheSorceres (FantasyVersion) The Sorceress! (Fantasy Version) Papercraft design by Kostas Ntanos Based on the Sorceress from The Cardboard Kingdom What you will need o An adult to help you with cutting

More information

KASTLE v1.5 - Assembly Guide

KASTLE v1.5 - Assembly Guide last update: 14. 12. 2017 KASTLE v1.5 - Assembly Guide bastl-instruments.com INTRODUCTION Welcome to the assembly guide for the Kastle kit - mini modular synthesizer. It is suitable for beginners. It is

More information

Internet of Things Student STEM Project Jackson High School. Lesson 3: Arduino Solar Tracker

Internet of Things Student STEM Project Jackson High School. Lesson 3: Arduino Solar Tracker Internet of Things Student STEM Project Jackson High School Lesson 3: Arduino Solar Tracker Lesson 3 Arduino Solar Tracker Time to complete Lesson 60-minute class period Learning objectives Students learn

More information

Sunday, November 4, The LadyUno Sound Unit

Sunday, November 4, The LadyUno Sound Unit The LadyUno Sound Unit Here s what we ll need for this project We start with our finished Lady Ada Wav Shield. 5V for LCD Serial Data for LCD GND for LCD 5V (coming from the BBB) is_lady_ada_busy PIN GND

More information

Arduino and Servo Motor

Arduino and Servo Motor Arduino and Servo Motor 1. Basics of the Arduino Board and Arduino a. Arduino is a mini computer that can input and output data using the digital and analog pins b. Arduino Shield: mounts on top of Arduino

More information

Western Technical-Commercial School. Keyholder Project Title Page. Integrated Technologies, TTI10. Grade 9 juniors. Mr. Franzen

Western Technical-Commercial School. Keyholder Project Title Page. Integrated Technologies, TTI10. Grade 9 juniors. Mr. Franzen Keyholder Project Title Page Integrated Technologies, TTI10 Grade 9 juniors Mr. Franzen michael.franzen@tel.tdsb.on.ca www.mfranzen.ca Hot-Air Balloon Project 14 School: Course: Grade: Teacher: E-Mail

More information

Note. One - point Advice. To begin. Basic working method and markings. Fold along these lines. The printed surface should be

Note. One - point Advice. To begin. Basic working method and markings. Fold along these lines. The printed surface should be Note To begin Basic working method and markings Tools and materials needed -Ruler - scissors - blade cutter or "Exacto-knife" - awl or other pointed tool (for making a folding crease) - felt pen - pin

More information

SIMREX Corporation Your Trusted Wireless Solution Provider

SIMREX Corporation Your Trusted Wireless Solution Provider SIMSYNC Instruction Manual Traffic Controller Time Synchronization System Firmware Release 1.7 SIMREX MAN.SIMSYNC, Rev 8.0 MARCH 2006 Your Trusted Wireless Solution Provider www.simrex.com Introduction

More information

TRDB_DC2 TRDB_DC2. 1.3Mega Pixel Digital Camera Development Kit

TRDB_DC2 TRDB_DC2. 1.3Mega Pixel Digital Camera Development Kit Terasic TRDB_DC2 Digital Camera Package TRDB_DC2 1.3Mega Pixel Digital Camera Development Kit Frame grabber with VGA display reference design For Altera DE2 and Terasic T-Rex C1 Boards TRDB_DC2 Document

More information

UpLift Media A GUIDE TO USING THE UPLIFT MEDIA ADVERT CREATOR. The latest innovation brought to you by

UpLift Media A GUIDE TO USING THE UPLIFT MEDIA ADVERT CREATOR. The latest innovation brought to you by UpLift Media A GUIDE TO USING THE UPLIFT MEDIA ADVERT CREATOR The latest innovation brought to you by 1 UpLift Media Uplift Media Advert Creator Welcome to the Uplift Media Advert Creator where you can

More information

DMX-K-DRV-23 Integrated Step Motor Driver & Basic Controller

DMX-K-DRV-23 Integrated Step Motor Driver & Basic Controller DMX-K-DRV-23 Integrated Step Motor Driver & Basic Controller DMX-K-DRV-23 Manual - 1 - rev 1.35 COPYRIGHT 2013 ARCUS, ALL RIGHTS RESERVED First edition, June 2007 ARCUS TECHNOLOGY copyrights this document.

More information

Grove - Gas Sensor(MQ9)

Grove - Gas Sensor(MQ9) Grove - Gas Sensor(MQ9) Release date: 9/20/2015 Version: 1.0 Wiki: http://www.seeedstudio.com/wiki/grove_-_gas_sensor(mq9) Bazaar: http://www.seeedstudio.com/depot/grove-gas-sensormq9-p-1419.html 1 Document

More information

555 Astable Kit MitchElectronics 2018

555 Astable Kit MitchElectronics 2018 555 Astable Kit MitchElectronics 2018 www.mitchelectronics.co.uk CONTENTS Introduction 3 Schematic 3 How It Works 4 Materials 6 Construction 7 Important Information 8 Page 2 INTRODUCTION The 555 timer

More information

ZX Distance and Gesture Sensor Hookup Guide

ZX Distance and Gesture Sensor Hookup Guide Page 1 of 13 ZX Distance and Gesture Sensor Hookup Guide Introduction The ZX Distance and Gesture Sensor is a collaboration product with XYZ Interactive. The very smart people at XYZ Interactive have created

More information

Adafruit 16-channel PWM/Servo Shield

Adafruit 16-channel PWM/Servo Shield Adafruit 16-channel PWM/Servo Shield Created by lady ada Last updated on 2017-06-29 07:25:45 PM UTC Guide Contents Guide Contents Overview Assembly Shield Connections Pins Used Connecting other I2C devices

More information

Model 305 Synchronous Countdown System

Model 305 Synchronous Countdown System Model 305 Synchronous Countdown System Introduction: The Model 305 pre-settable countdown electronics is a high-speed synchronous divider that generates an electronic trigger pulse, locked in time with

More information

Servomotor Control with Arduino Integrated Development Environment. Application Notes. Bingyang Wu Mar 27, Introduction

Servomotor Control with Arduino Integrated Development Environment. Application Notes. Bingyang Wu Mar 27, Introduction Servomotor Control with Arduino Integrated Development Environment Application Notes Bingyang Wu Mar 27, 2015 Introduction Arduino is a tool for making computers that can sense and control more of the

More information

On a modular synthesizer, attenuators are an important building block in pretty much every part of your patch for both CV and audio duties.

On a modular synthesizer, attenuators are an important building block in pretty much every part of your patch for both CV and audio duties. OVERVIEW For the most recent version of this document please visit www.thonk.co.uk For all technical support please visit http://bit.ly/r0nqyt on Muffwiggler. The Thonk AT-AT-AT Triple Passive Attenuator

More information

Cato s Hike Quick Start

Cato s Hike Quick Start Cato s Hike Quick Start Version 1.1 Introduction Cato s Hike is a fun game to teach children and young adults the basics of programming and logic in an engaging game. You don t need any experience to play

More information

Grove - Infrared Receiver

Grove - Infrared Receiver Grove - Infrared Receiver The Infrared Receiver is used to receive infrared signals and also used for remote control detection. There is an IR detector on the Infrared Receiver which is used to get the

More information

Lesson4 Obstacle avoidance car

Lesson4 Obstacle avoidance car Lesson4 Obstacle avoidance car 1 Points of this section The joy of learning, is not just know how to control your car, but also know how to protect your car. So, make you car far away from collision. Learning

More information

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino

Lecture 4: Basic Electronics. Lecture 4 Brief Introduction to Electronics and the Arduino Lecture 4: Basic Electronics Lecture 4 Page: 1 Brief Introduction to Electronics and the Arduino colintan@nus.edu.sg Lecture 4: Basic Electronics Page: 2 Objectives of this Lecture By the end of today

More information

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1 HAW-Arduino Sensors and Arduino 14.10.2010 F. Schubert HAW - Arduino 1 Content of the USB-Stick PDF-File of this script Arduino-software Source-codes Helpful links 14.10.2010 HAW - Arduino 2 Report for

More information

Parts List. Robotic Arm segments ¼ inch screws Cable XBEE module or Wifi module

Parts List. Robotic Arm segments ¼ inch screws Cable XBEE module or Wifi module Robotic Arm 1 Legal Stuff Stensat Group LLC assumes no responsibility and/or liability for the use of the kit and documentation. There is a 90 day warranty for the Sten-Bot kit against component defects.

More information

Web-Enabled Speaker and Equalizer Final Project Report December 9, 2016 E155 Josh Lam and Tommy Berrueta

Web-Enabled Speaker and Equalizer Final Project Report December 9, 2016 E155 Josh Lam and Tommy Berrueta Web-Enabled Speaker and Equalizer Final Project Report December 9, 2016 E155 Josh Lam and Tommy Berrueta Abstract IoT devices are often hailed as the future of technology, where everything is connected.

More information

DC Current Sensor CYCT04-xnL20

DC Current Sensor CYCT04-xnL20 DC Current Sensor CYCT04-xnL20 This current sensor is based on magnetic modulation and compensation principle, and can be used for measurement of small DC current and leakage current, current difference

More information

Shaped Charges. *a cone made out of copper (or another soft metal).

Shaped Charges. *a cone made out of copper (or another soft metal). Shaped Charges. Here is discussed the conically shaped charge. The main goal of a shaped charge is to cut a tiny hole threw a thick metal plate, most of the time it is used for penetrating thick armed

More information

Arduino Workshop 01. AD32600 Physical Computing Prof. Fabian Winkler Fall 2014

Arduino Workshop 01. AD32600 Physical Computing Prof. Fabian Winkler Fall 2014 AD32600 Physical Computing Prof. Fabian Winkler Fall 2014 Arduino Workshop 01 This workshop provides an introductory overview of the Arduino board, basic electronic components and closes with a few basic

More information

nrf24l01+ Transceiver Hookup Guide

nrf24l01+ Transceiver Hookup Guide Page 1 of 6 nrf24l01+ Transceiver Hookup Guide Introduction These breakout boards provide SPI access to the nrf24l01+ transceiver module from Nordic Semiconductor. The transceiver operates at 2.4 GHz and

More information

Real-time Laser Beam Position Detector. XY-4QD User Manual

Real-time Laser Beam Position Detector. XY-4QD User Manual Real-time Laser Beam Position Detector XY4QD User Manual page 1 of 7 1. Introduction The XY4QD is a 4-quadrant-diode with readout electronics and outputs for x and y position. The position of the laser

More information

Channels that are not occupied by temperature sensors, can take over alternative functions:

Channels that are not occupied by temperature sensors, can take over alternative functions: Firmware /TEMP12 The /TEMP12 firmware allows you to connect up to twelve digital temperature sensors (type Dallas DS18B20). Data from twelve channels is transferred to your PC via USB. ONE temperature

More information