FAILURE TO INITIATE AND FOLLOW YOUR OWN SAFETY PROCEDURES MAY RESULT IN BODILY INJURY OR DEATH!

Size: px
Start display at page:

Download "FAILURE TO INITIATE AND FOLLOW YOUR OWN SAFETY PROCEDURES MAY RESULT IN BODILY INJURY OR DEATH!"

Transcription

1 Potted Plant Protector PART NO Build a digital guardian for your favorite plants! Using an Arduino and a few inexpensive sensors, you can keep your plants extremely happy with the proper amount of moisture, warmth, and light. The simplest version of Potted Plant Protector senses the brightness of the light, wetness of the soil, and warmth of the air that your plant is exposed to. It outputs these readings over USB, displaying on your computer screen. WARNING: If you are unsure of the dangers involved with your particular project, consult with someone who is experienced. Always wear eye protection and gloves. FAILURE TO INITIATE AND FOLLOW YOUR OWN SAFETY PROCEDURES MAY RESULT IN BODILY INJURY OR DEATH! Time Required: 1 day depending on experience Experience Level: Advanced Required tools and parts: Wire cutter / stripper Computer running Arduino IDE software Soldering iron and solder USB cable Bill of Materials: Qty Jameco SKU Component Name Arduino Uno Surface Mount (Revision 3) Cell 1 Alkaline Manganese Dioxide 9V 2-Pin Point Solderless Breadboard Resistor Carbon Film 10k Ohm 1/4 Watt 5% Wire Jumper Reinforced 300 Volt 24 AWG Thermistor PTC 100 Ohm 2 Pin Photocell 250mw 250V Peak 12K Ohm Max Light 1M Ohm MIN Dark Pin 10mm Diffused RGB LED - Common Anode Resistor Carbon Film 330 Ohm 1/4 Watt 5% Display LCD 16X2 Serial Potentiometer 10K Rv24A-10-15R1-B10K Linear Taper 1/2 Watt.335" /8" PHILLIPS PAN HEAD SCREW Nuts Hex 0.125in Steel Zinc 8-32 Step 1 - Basic build: Light, heat, and moisture sensing In a scrap of plastic, drill 2 holes 1/2" to fit your bolts. Make a second spacer and thread your bolts through both spacers, to keep them separated at a distance that won't vary.

2 Step 2 - Build the 3-sensor circuit. Here we'll use this setup for our 3 sensors "soil moisture, temperature, and light" and put them all together to create the circuit shown in the second schematic. Following the schematic, build the circuit on the breadboard as shown in the third photo. The thermistor and photoresistor are on the breadboard; the soil probe is just 2 long wires, each wrapped around a bolt and secured with a nut. The soil probe is connected to the Arduino's analog pin A0, the thermistor to pin A1, and the photoresistor to pin A2. Step 3 - Program the Arduino. To read the 3 sensors, we simply repeat this code for all 3 sensors, add variable declarations, and set up our serial port. Open THE CODE in the Arduino IDE, and upload it to your Arduino. //initialize variables for sensor pins int moistpin = 0; int temppin = 1; int lightpin = 2; //initialize variables to store readings from sensors int moistval = 0; int tempval = 0; int lightval = 0;

3 void setup() //initialize the serial port Serial.begin(9600); void loop() //read values from the sensors moistval = analogread(moistpin); tempval = analogread(temppin); lightval = analogread(lightpin); //display the readings on the serial monitor in a coherent way Serial.print("moisture reads "); Serial.println(moistVal); Serial.print("temperature reads "); Serial.println(tempVal); Serial.print("light reads "); Serial.println(lightVal); //wait one second before continuing. We're doing this so that we don't just see readings fly by the screen delay(1000); Step 4 - Place and calibrate sensors. In open air: both sensors read 0 Very dry soil: 2% Vegetronix, 5 DIY Slightly moist: 7%, 150 Slightly moister: 8%, 250 Wet soil: 28%, 370 Very wet soil: 51%, 385 Probe immersed in water: 85%, 480 So if I want to water my soil to about 28% moisture, I should watch for a sensor reading of about 385 as my cutoff point.

4 Step 5 - Intermediate build: Add an RGB LED indicator. Generally, you can connect an LED to an Arduino with the circuit shown in the first diagram here. On the schematic symbol for an LED, the triangle points to the anode (negative side). On an actual LED, the longer lead is the one youâ ll connect to ground. The resistor regulates current to the LED: too much current, and our LED will burn out after a couple of seconds rather than lasting the 10,000-odd hours that it should. Step 6 - Connect the LED into your circuit. Following the schematic, connect the LED to +5V power and to the Arduino's digital input/output (I/O) pins D9, D10, and D11.

5 Step 7 - Reprogram the Arduino. code:::: //initialize variables for sensor pins int moistpin = 0; int temppin = 1; int lightpin = 2; //initialize variables to store readings from sensors int moistval = 0; int tempval = 0; int lightval = 0; //initialize variables for LED pins int redpin = 11; int greenpin = 10; int bluepin = 9; void setup() //initialize the serial port Serial.begin(9600); //set LED pins to output mode pinmode(redpin, OUTPUT); pinmode(greenpin, OUTPUT); pinmode(bluepin, OUTPUT); //set LED pins to off digitalwrite(greenpin, digitalwrite(bluepin, void loop() //read values from the sensors moistval = analogread(moistpin); tempval = analogread(temppin); lightval = analogread(lightpin); //display the readings on the serial monitor in a coherent way Serial.print("moisture reads "); Serial.println(moistVal); Serial.print("temperature reads "); Serial.println(tempVal); Serial.print("light reads "); Serial.println(lightVal); //wait one second before continuing. We're doing this so that we don't just see readings fly by the screen delay(1000); //turn on LED to blue, others off if moisture pins are touching together if (moistval > 1000) blue(); //wait one second delay(1000); if (tempval > 148) red();

6 //wait one second delay(1000); //turn on green if light sensor reads 600 or brighter if (lightval > 600) green(); //wait one second delay(1000); void blue() digitalwrite(greenpin, digitalwrite(bluepin, LOW); void red() digitalwrite(redpin, LOW); digitalwrite(greenpin, digitalwrite(bluepin, void green() digitalwrite(greenpin, LOW); digitalwrite(bluepin, void off() digitalwrite(greenpin, digitalwrite(bluepin, void on() digitalwrite(redpin, LOW); digitalwrite(greenpin, LOW); digitalwrite(bluepin, LOW); This will cycle our LED through its different colors over the course of 5 seconds, depending on our plant's conditions:

7 The LED will flash blue for 1 second if the soil is moist. The LED will flash red if our plants are warm. The LED will flash green if our plants are getting sun. Step 8 - Advanced: Display readings on an LCD screen. You'll need to do some soldering to wire up the LCD screen. It's easy if you use good tools and proper technique. Step 9 - Connect the LCD display and test it. Following the schematic, connect the LCD into your circuit: LCD pin #1 to Ground on your breadboard LCD pin #2 to 5V and also the potentiometer outer pin --does not matter which outer pin, just pick one. LCD pin #3 to the potentiometer wiper --that is the middle pin. LCD pin #4 to the Arduino digital pin #7 --this is different from the stock LCD Library. LCD pin #5 to GND and also the potentiometer's other outer pin. LCD pin #6 to the Arduino digital pin #6 --this is different from the stock LCD Library. LCD pins #7 - #10 do not connect to anything. LCD pin #11 to the Arduino digital pin #5 LCD pin #12 to the Arduino digital pin #4 LCD pin #13 to the Arduino digital pin #3 LCD pin #14 to the Arduino digital pin #2 LCD pins #14 and #15 do not connect to anything. To test your LCD, here's their sample code, adapted for our pins. #include // initialize the library with the numbers of the interface pins LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

8 void setup() // set up the LCD's number of columns and rows: lcd.begin(16, 2); // Print a message to the LCD. lcd.print("hello, world!"); void loop() // Turn off the display: lcd.nodisplay(); delay(500); // Turn on the display: lcd.display(); delay(500); Turn the potentiometer until you can see "hello world" displayed on the screen. If your LCD is connected correctly, this should blink on and off every second. Step 10 - Reprogram the Arduino. /* // Potted Plant Protector using sensors // By Dibyajyoti Das // With thanks to */ //potted plant protector with rgb indicator LED and LCD //with thanks to // Include the LCD Library #include //initialize variables for sensor pins int moistpin = 0; int temppin = 1; int lightpin = 2; //initialize variables to store readings from sensors int moistval = 0; int tempval = 0; int lightval = 0; //initialize variables for LED pins int redpin = 11; int greenpin = 10; int bluepin = 9;

9 // initialize the library with the numbers of the interface pins LiquidCrystal lcd(7, 6, 5, 4, 3, 2); void setup() //initialize the serial port Serial.begin(9600); //set LED pins to output mode pinmode(redpin, OUTPUT); pinmode(greenpin, OUTPUT); pinmode(bluepin, OUTPUT); //set LED pins to off digitalwrite(greenpin, digitalwrite(bluepin, // set up the LCD's number of columns and rows: lcd.begin(16, 2); void loop() moistval = analogread(moistpin); //display moisture reading on lcd lcd.clear(); lcd.print("moisture "); lcd.print(moistval); //turn on LED to blue, others off if moisture pins are touching together if (moistval > 1000) blue(); //wait 4 seconds delay(4000); //display moisture reading on lcd tempval = analogread(temppin); lcd.clear(); lcd.print("temperature "); lcd.print(tempval); if (tempval > 148) red(); delay(4000); lightval = analogread(lightpin); //display moisture reading on lcd lcd.clear(); lcd.print("light "); lcd.print(lightval);

10 //turn on green if light sensor reads 600 or brighter if (lightval > 600) green(); delay(4000); void blue() digitalwrite(greenpin, digitalwrite(bluepin, LOW); void red() digitalwrite(redpin, LOW); digitalwrite(greenpin, digitalwrite(bluepin, void green() digitalwrite(greenpin, LOW); digitalwrite(bluepin, void off() digitalwrite(greenpin, digitalwrite(bluepin, void on() digitalwrite(redpin, LOW); digitalwrite(greenpin, LOW); digitalwrite(bluepin, LOW);

11 Step 11 - Growing further We will soon add controls, power management, solar power, connectivity, better sensors.

DEPARTMENT OF ELECTRONICS ENGINEERING

DEPARTMENT OF ELECTRONICS ENGINEERING UNIVERSITY OF MUMBAI A PROJECT REPORT ON Home Security Alarm System Using Arduino SUBMITTED BY- Suman Pandit Shakyanand Kamble Vinit Vasudevan (13103A0011) (13103A0012) (13103A0018) UNDER THE GUIDANCE

More information

Your Multimeter. The Arduino Uno 10/1/2012. Using Your Arduino, Breadboard and Multimeter. EAS 199A Fall 2012. Work in teams of two!

Your Multimeter. The Arduino Uno 10/1/2012. Using Your Arduino, Breadboard and Multimeter. EAS 199A Fall 2012. Work in teams of two! Using Your Arduino, Breadboard and Multimeter Work in teams of two! EAS 199A Fall 2012 pincer clips good for working with breadboard wiring (push these onto probes) Your Multimeter probes leads Turn knob

More information

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 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

More information

Arduino Lesson 9. Sensing Light

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

More information

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 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

More information

Arduino Lesson 0. Getting Started

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

More information

PHYS 2P32 Project: MIDI for Arduino/ 8 Note Keyboard

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

More information

ATL Fuel Level Sender Probes

ATL Fuel Level Sender Probes T E C H N I C A L S P E C I F I C A T I O N The ATL EL-AD-151 (Resistance Output) and EL-AD-152 (Voltage Output) Fuel Level Senders are highly advanced sensors for continuously measuring the contents of

More information

Controlling a Dot Matrix LED Display with a Microcontroller

Controlling a Dot Matrix LED Display with a Microcontroller Controlling a Dot Matrix LED Display with a Microcontroller By Matt Stabile and programming will be explained in general terms as well to allow for adaptation to any comparable microcontroller or LED matrix.

More information

Arduino Lesson 16. Stepper Motors

Arduino Lesson 16. Stepper Motors Arduino Lesson 16. Stepper Motors Created by Simon Monk Last updated on 2013-11-22 07:45:14 AM EST Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Arduino Code Stepper Motors Other

More information

Arduino Lesson 13. DC Motors. Created by Simon Monk

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

More information

Lab 3 - DC Circuits and Ohm s Law

Lab 3 - DC Circuits and Ohm s Law Lab 3 DC Circuits and Ohm s Law L3-1 Name Date Partners Lab 3 - DC Circuits and Ohm s Law OBJECTIES To learn to apply the concept of potential difference (voltage) to explain the action of a battery in

More information

Arduino Lesson 14. Servo Motors

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

More information

BUILDING INSTRUCTIONS

BUILDING INSTRUCTIONS etap2hw 38 mm I2C to LCD Interface BUILDING INSTRUCTIONS October 2013 P. Verbruggen Rev 1.01 15-Oct-13 Page 1 Table of Contents Chapter 1 General Information 1.1 ESD Precautions 1.2 Further Supplies 1.3

More information

Theory and Practice of Tangible User Interfaces. Thursday Week 2: Digital Input and Output. week. Digital Input and Output. RGB LEDs fade with PWM

Theory and Practice of Tangible User Interfaces. Thursday Week 2: Digital Input and Output. week. Digital Input and Output. RGB LEDs fade with PWM week 02 Digital Input and Output RGB LEDs fade with PWM 1 Microcontrollers Output Transducers actuators (e.g., motors, buzzers) Arduino Input Transducers sensors (e.g., switches, levers, sliders, etc.)

More information

Solar Home System. User Manual. AEH-SHS01-10W2L Solar Home System 2 Lamps

Solar Home System. User Manual. AEH-SHS01-10W2L Solar Home System 2 Lamps Solar Home System User Manual AEHSHS0110W2L Solar Home System 2 Lamps All rights reserved Specifications subject to change without prior notice 2 Dear Customer, Thank you for purchasing Schneider Electric

More information

Name: Bicycle Cellphone Charger Circuit Assembly Manual Device: Nokia/Blackberry List of Components:

Name: Bicycle Cellphone Charger Circuit Assembly Manual Device: Nokia/Blackberry List of Components: Name: Bicycle Cellphone Charger Circuit Assembly Manual Device: Nokia/Blackberry List of Components: Serial numbername Quantity Component number 1 5 V Regulator 1 U2 2 10 MicroFarad Capacitor 1 C1 3 22

More information

Odyssey of the Mind Technology Fair. Simple Electronics

Odyssey of the Mind Technology Fair. Simple Electronics Simple Electronics 1. Terms volts, amps, ohms, watts, positive, negative, AC, DC 2. Matching voltages a. Series vs. parallel 3. Battery capacity 4. Simple electronic circuit light bulb 5. Chose the right

More information

SOLAR POWER - THE NEW WAY TO RV!

SOLAR POWER - THE NEW WAY TO RV! IMPORTANT! - YOU'RE SOLAR READY SOLAR POWER - THE NEW WAY TO RV! Your RV is PRE-WIRED for SOLAR POWER! Benefits of Solar Zamp Solar Portable Solar Kit Maximize Battery Life Electrical Independence Green,

More information

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 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

More information

SYMMETRIC 1A POWER SUPPLY K8042

SYMMETRIC 1A POWER SUPPLY K8042 SYMMETRIC 1A POWER SUPPLY K8042 Low cost universal symmetric power supply ILLUSTRATED ASSEMBLY MANUAL H8042IP-1 Features & Specifications Features low cost universal symmetric power supply just add a suitable

More information

GLOLAB Universal Telephone Hold

GLOLAB Universal Telephone Hold GLOLAB Universal Telephone Hold 1 UNIVERSAL HOLD CIRCUIT If you have touch tone telephone service, you can now put a call on hold from any phone in the house, even from cordless phones and phones without

More information

Department of Electrical and Computer Engineering LED DISPLAY PROJECT

Department of Electrical and Computer Engineering LED DISPLAY PROJECT Department of Electrical and Computer Engineering By Betty Lise Anderson LED DISPLAY PROJECT Description This document describes a hands- on project in which students design and build an LED display to

More information

SYSTEM 4C. C R H Electronics Design

SYSTEM 4C. C R H Electronics Design SYSTEM 4C C R H Electronics Design SYSTEM 4C All in one modular 4 axis CNC drive board By C R Harding Specifications Main PCB & Input PCB Available with up to 4 Axis X, Y, Z, A outputs. Independent 25

More information

Cornerstone Electronics Technology and Robotics I Week 15 Voltage Comparators Tutorial

Cornerstone Electronics Technology and Robotics I Week 15 Voltage Comparators Tutorial Cornerstone Electronics Technology and Robotics I Week 15 Voltage Comparators Tutorial Administration: o Prayer Robot Building for Beginners, Chapter 15, Voltage Comparators: o Review of Sandwich s Circuit:

More information

Assembly and User Guide

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

More information

K8025 VIDEO PATTERN GENERATOR. Check the picture quality of your monitor or TV, ideal for adjustment or troubleshooting.

K8025 VIDEO PATTERN GENERATOR. Check the picture quality of your monitor or TV, ideal for adjustment or troubleshooting. K8025 ILLUSTRATED ASSEMBLY MANUAL H8025IP 1 VIDEO PATTERN GENERATOR Check the picture quality of your monitor or TV, ideal for adjustment or troubleshooting. Forum Participate our Velleman Projects Forum

More information

SYSTEM 45. C R H Electronics Design

SYSTEM 45. C R H Electronics Design SYSTEM 45 C R H Electronics Design SYSTEM 45 All in one modular 4 axis CNC drive board By C R Harding Specifications Main PCB & Input PCB Available with up to 4 Axis X, Y, Z, & A outputs. Independent 25

More information

Kit 106. 50 Watt Audio Amplifier

Kit 106. 50 Watt Audio Amplifier Kit 106 50 Watt Audio Amplifier T his kit is based on an amazing IC amplifier module from ST Electronics, the TDA7294 It is intended for use as a high quality audio class AB amplifier in hi-fi applications

More information

IR Communication a learn.sparkfun.com tutorial

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

More information

Electronics and Soldering Notes

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

More information

TEECES DOME LIGHTING SYSTEMS

TEECES DOME LIGHTING SYSTEMS This lighting system was designed by John V (Teeces) to be a simple, customizable, expandable and affordable solution for dome lighting. An Arduino micro-controller is used to tell LED driver chips which

More information

SERVICE MANUAL RESIDENTIAL ELECTRIC AND LIGHT DUTY COMMERCIAL ELECTRIC WATER HEATERS. Troubleshooting Guide and Instructions for Service

SERVICE MANUAL RESIDENTIAL ELECTRIC AND LIGHT DUTY COMMERCIAL ELECTRIC WATER HEATERS. Troubleshooting Guide and Instructions for Service RESIDENTIAL ELECTRIC AND LIGHT DUTY COMMERCIAL ELECTRIC WATER HEATERS SERVICE MANUAL Troubleshooting Guide and Instructions for Service (To be performed ONLY by qualified service providers) Models Covered

More information

User Guide Reflow Toaster Oven Controller

User Guide Reflow Toaster Oven Controller User Guide Reflow Toaster Oven Controller Version 1.5-01/10/12 DROTEK Web shop: www.drotek.fr SOMMAIRE 1. Introduction... 3 2. Preparation of THE REFLOW CONTROLLER... 4 2.1. Power supply... 4 2.2. USB

More information

RS232/DB9 An RS232 to TTL Level Converter

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

More information

Lab 6 Introduction to Serial and Wireless Communication

Lab 6 Introduction to Serial and Wireless Communication University of Pennsylvania Department of Electrical and Systems Engineering ESE 111 Intro to Elec/Comp/Sys Engineering Lab 6 Introduction to Serial and Wireless Communication Introduction: Up to this point,

More information

DS1307 Real Time Clock Breakout Board Kit

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

More information

ETC TWO STAGE ELECTRONIC TEMPERATURE CONTROL

ETC TWO STAGE ELECTRONIC TEMPERATURE CONTROL RANCO INSTALLATION INSTRUCTIONS ETC TWO STAGE ELECTRONIC TEMPERATURE CONTROL Relay Electrical Ratings PRODUCT DESCRIPTION The Ranco ETC is a microprocessor-based family of electronic temperature controls,

More information

Arduino Lesson 1. Blink

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'

More information

12 Volt 30 Amp Digital Solar Charge Controller

12 Volt 30 Amp Digital Solar Charge Controller 12 Volt 30 Amp Digital Solar Charge Controller User s Manual WARNING Read carefully and understand all INSTRUCTIONS before operating. Failure to follow the safety rules and other basic safety precautions

More information

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 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

More information

ECEN 1400, Introduction to Analog and Digital Electronics

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

More information

Tube Liquid Sensor OPB350 / OCB350 Series

Tube Liquid Sensor OPB350 / OCB350 Series Features: Can identify if liquid is present in clear tubes that have an outside diameter of 1/16 [1.6mm], 1/8" [3.2mm], 3/16" [4.8 mm] or 1/4" [6.3 mm] Opaque plastic housing enhances ambient light rejection

More information

The self-starting solar-powered Stirling engine

The self-starting solar-powered Stirling engine The self-starting solar-powered Stirling engine This project began at the request of an artist who had proposed a Stirling-engine-powered sculpture to a client. The engine only had to run, not really produce

More information

LG Air Conditioning Multi F(DX) Fault Codes Sheet. Multi Split Units

LG Air Conditioning Multi F(DX) Fault Codes Sheet. Multi Split Units Multi Split Units If there is a fault on any LG Multi unit, an Error mark is indicated on the display window of the indoor unit, wired-remote controller, and LED s of outdoor unit control board. A two

More information

Objectives: Part 1: Build a simple power supply. CS99S Laboratory 1

Objectives: Part 1: Build a simple power supply. CS99S Laboratory 1 CS99S Laboratory 1 Objectives: 1. Become familiar with the breadboard 2. Build a logic power supply 3. Use switches to make 1s and 0s 4. Use LEDs to observe 1s and 0s 5. Make a simple oscillator 6. Use

More information

Digital Fingerprint safe

Digital Fingerprint safe Digital Fingerprint safe Model 96846 Operation Instructions Diagrams within this manual may not be drawn proportionally. Due to continuing improvements, actual product may differ slightly from the product

More information

Charge Regulator SCR 12 Marine

Charge Regulator SCR 12 Marine Charge Regulator SCR 12 Marine Manual Many thanks for purchasing a superwind product. The SCR 12 Marine is a charge regulator of highest quality and will perfectly and reliably charge your batteries for

More information

Installation Instructions for Solar Pumps USER MANUAL FOR SPS, SPC, SPSC SPQB, SPGJ SERIES SOLAR PUMPS AND PUMP CONTROLLERS

Installation Instructions for Solar Pumps USER MANUAL FOR SPS, SPC, SPSC SPQB, SPGJ SERIES SOLAR PUMPS AND PUMP CONTROLLERS Installation Instructions for Solar Pumps USER MANUAL FOR SPS, SPC, SPSC SPQB, SPGJ SERIES SOLAR PUMPS AND PUMP CONTROLLERS PO Box 80, Tuakau 2342 ph 0800 14 48 65 e-mail: hunkin-garden@xnet.co.nz www.hunkin.co.nz

More information

TRANSISTOR/DIODE TESTER

TRANSISTOR/DIODE TESTER TRANSISTOR/DIODE TESTER MODEL DT-100 Lesson Manual ELENCO Copyright 2012, 1988 REV-G 753115 Elenco Electronics, Inc. Revised 2012 FEATURES Diode Mode: 1. Checks all types of diodes - germanium, silicon,

More information

INSTRUCTIONS FOR THE INSTALLATION AND OPERATION OF ACTIVATOR II

INSTRUCTIONS FOR THE INSTALLATION AND OPERATION OF ACTIVATOR II INSTRUCTIONS FOR THE INSTALLATION AND OPERATION OF ACTIVATOR II ELECTRONIC TRAILER BRAKE CONTROL 5500 FOR 2, 4, 6 & 8 BRAKE SYSTEMS IMPORTANT: READ AND FOLLOW THESE INSTRUCTIONS CAREFULLY. KEEP THESE INSTRUCTIONS

More information

Home Security System for Automatic Doors

Home Security System for Automatic Doors ABDUL S. RATTU Home Security System for Automatic Doors Capstone Design Project Final Report Spring 2013 School of Engineering The State University of New Jersey, USA May 1st, 2013 ECE 468 Advisor: Prof.

More information

Transfer of Energy Forms of Energy: Multiple Transformations

Transfer of Energy Forms of Energy: Multiple Transformations Transfer of Energy Forms of Energy: Multiple Transformations Discovery Question What energy transformations are used in everyday devices? Introduction Thinking About the Question Materials Safety Trial

More information

12 Volt 30 Amp Digital Solar Charge Controller Installation & Operation Manual

12 Volt 30 Amp Digital Solar Charge Controller Installation & Operation Manual 12 Volt 30 Amp Digital Solar Charge Controller Installation & Operation Manual This 30Amp charge controller is designed to protect your 12Volt Lead-acid or Gel-cell battery from being overcharge by solar

More information

Arduino Lab 1 - The Voltage Divider

Arduino Lab 1 - The Voltage Divider Arduino Lab 1 - The Voltage Divider 1. Introduction In this lab, we will endanger a cute animal, create a portal to another dimension, and invent a new genre of music. Along the way, we will learn about

More information

How to Move Canon EF Lenses. Yosuke Bando

How to Move Canon EF Lenses. Yosuke Bando How to Move Canon EF Lenses Yosuke Bando Preface This instruction is intended to be helpful to those who are interested in making modifications to camera lenses to explore/reproduce focus sweep, focal

More information

STEALTH I DC MANUAL TECH SUPPORT 1-888-588-4506.WEB www.stealth1charging.com BLACK UNIT IS 24/36 ONLY

STEALTH I DC MANUAL TECH SUPPORT 1-888-588-4506.WEB www.stealth1charging.com BLACK UNIT IS 24/36 ONLY STEALTH I DC MANUAL TECH SUPPORT 1-888-588-4506.WEB www.stealth1charging.com BLACK UNIT IS 24/36 ONLY PLEASE READ AND UNDERSTAND YOUR NEW PRODUCT IMPORTANT MESSAGE: Before installing your newly purchased

More information

128x64 DOTS. EA DOGL128x-6 EA LED68X51-RGB

128x64 DOTS. EA DOGL128x-6 EA LED68X51-RGB DOGL GRAPHIC SERIES 128x64 DOTS also available in low quantities! flat: 6.5mm with LED B/L mounted 2.2012 TECHNICAL DATA EA DOGL128W-6 + EA LED68x51-W EA DOGL128B-6 + EA LED68x51-W EA DOGL128W-6 + EA LED68x51-A

More information

8 by 8 dot matrix LED displays with Cascadable Serial driver B32CDM8 B48CDM8 B64CDM8 General Description

8 by 8 dot matrix LED displays with Cascadable Serial driver B32CDM8 B48CDM8 B64CDM8 General Description 8 by 8 dot matrix LED displays with Cascadable Serial driver B32CDM8 B48CDM8 B64CDM8 General Description The B32CDM8, B48CDM8 and the B64CDM8 are 8 by 8 (row by column) dot matrix LED displays combined

More information

WxGoos-1 Climate Monitor Installation Instructions Page 1. Connections. Setting an IP Address

WxGoos-1 Climate Monitor Installation Instructions Page 1. Connections. Setting an IP Address Instructions Page 1 Connections The WxGoos-1 is a self-contained web server and requires 6vdc of power at 300ma. A center-positive 2.1 mm plug is used. There are five ports: 1. 10/100 Ethernet RJ-45 receptacle

More information

DUAL SENSING DIGITAL THERMOSTAT PRODUCT INSTRUCTIONS. Construction Automotive Industry

DUAL SENSING DIGITAL THERMOSTAT PRODUCT INSTRUCTIONS.  Construction Automotive Industry DUAL SENSING DIGITAL THERMOSTAT PRODUCT INSTRUCTIONS www.rehau.com Construction Automotive Industry SCOPE This guide gives instruction regarding REHAU Programmable Digital Thermostat installation and operation.

More information

GUITAR PREAMPLIFIER WITH HEADPHONE OUTPUT K4102

GUITAR PREAMPLIFIER WITH HEADPHONE OUTPUT K4102 H4102IP-1 GUITAR PREAMPLIFIER WITH HEADPHONE OUTPUT K4102 Practice the guitar without disturbing others. Features & Specifications Features: An electric guitar cannot be connected to just any amplifier

More information

DET Practical Electronics (Intermediate 1)

DET Practical Electronics (Intermediate 1) DET Practical Electronics (Intermediate 1) 731 August 2000 HIGHER STILL DET Practical Electronics (Intermediate 1) Support Materials CONTENTS Section 1 Learning about Resistors Section 2 Learning about

More information

SPY-BATT Battery Tutor Device Installation Manual Rev. 1.1-07/04/2016

SPY-BATT Battery Tutor Device Installation Manual Rev. 1.1-07/04/2016 SPY-BATT Battery Tutor Device Installation Manual Rev. 1.1-07/04/2016 1. GENERAL DESCRIPTION The SPY-BATT is a device that allows to monitor the state of your battery. The SPY-BATT stores over time the

More information

PhidgetInterfaceKit 8/8/8

PhidgetInterfaceKit 8/8/8 PhidgetInterfaceKit 8/8/8 Operating Systems: Windows 2000/XP/Vista, Windows CE, Linux, and Mac OS X Application Programming Interfaces (APIs): Visual Basic, VB.NET, C, C++, C#, Flash 9, Flex, Java, LabVIEW,

More information

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home

Building a Basic Communication Network using XBee DigiMesh. Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Building a Basic Communication Network using XBee DigiMesh Jennifer Byford April 5, 2013 Keywords: XBee, Networking, Zigbee, Digimesh, Mesh, Python, Smart Home Abstract: Using Digi International s in-house

More information

SPECIFICATIONS. Recommended Battery sizes (Maintenance) AUTOMOTIVE 150 650CCA 150 750CCA MARINE 200 700MCA 200 850MCA DEEP CYCLE 17 55Ah 17 80Ah

SPECIFICATIONS. Recommended Battery sizes (Maintenance) AUTOMOTIVE 150 650CCA 150 750CCA MARINE 200 700MCA 200 850MCA DEEP CYCLE 17 55Ah 17 80Ah WARNING Read the operating instructions before use. Lead Acid Batteries can be dangerous. Ensure no sparks or flames are present when working near batteries. Eye protection should be used. Make sure the

More information

lamp post light Set up and Operating Instructions

lamp post light Set up and Operating Instructions lamp post light 66240 Set up and Operating Instructions Distributed exclusively by Harbor Freight Tools. 3491 Mission Oaks Blvd., Camarillo, CA 93011 Visit our website at: http://www.harborfreight.com

More information

How to modify a car starter for forward/reverse operation

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

More information

Lectric Enterprises 5905 Sprucepine Drive Winston Salem, NC. 27105 Telephone 336-655-4801 e-mail: ivirscar@knight-f2k4.com

Lectric Enterprises 5905 Sprucepine Drive Winston Salem, NC. 27105 Telephone 336-655-4801 e-mail: ivirscar@knight-f2k4.com KNIGHT RIDER DASH ELECTRONICS PILOT\SEASON 2-2 TV DASH INSTALLATION INSTRUCTION MANUAL Bezel Overlay Voice Box Instructions Relay connection for a dash startup delay. Connect to the +12v side of relay

More information

Document number RS-PRD-00130 Revision 05 Date 20/10/2009 Page 1/30

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

More information

PolyBot Board. User's Guide V1.11 9/20/08

PolyBot Board. User's Guide V1.11 9/20/08 PolyBot Board User's Guide V1.11 9/20/08 PolyBot Board v1.1 16 pin LCD connector 4-pin SPI port (can be used as digital I/O) 10 Analog inputs +5V GND GND JP_PWR 3-pin logic power jumper (short top 2 pins

More information

LMU-5000. Hardware and Installation Guide

LMU-5000. Hardware and Installation Guide LMU-5000 Hardware and Installation Guide Plan The Installation Verify Power, Ground and Ignition. Be sure to check each source (power, ground and ignition) to ensure that the proper signaling exists. This

More information

Practical Low Resistance Measurements

Practical Low Resistance Measurements Practical Low Resistance Measurements Bob Nuckolls Sr. Engineer/SME Raytheon Aircraft Company Wichita, Kansas Modern digital multimeters limitations: have two important (1) When taking resistance readings

More information

e-4 AWT07MLED 7 Q TFT LCD MONITOR (LED Backlighted) USER MANUAL

e-4 AWT07MLED 7 Q TFT LCD MONITOR (LED Backlighted) USER MANUAL Thank you for purchasing our product. Please read this User s Manual before using the product. Change without Notice AWT07MLED 7 Q TFT LCD MONITOR (LED Backlighted) USER MANUAL e-4 SAFETY PRECAUTIONS Federal

More information

Using and Wiring Light Emitting Diodes (LEDs) for Model Railroads

Using and Wiring Light Emitting Diodes (LEDs) for Model Railroads Using and Wiring Light Emitting Diodes (LEDs) for Model Railroads LEDs have many useful applications in Model railroading, including: Locomotive headlights Rear-end warning lights for cabooses and passenger

More information

7-SEGMENT DIGITAL CLOCK

7-SEGMENT DIGITAL CLOCK 57mm 7-SEGMENT DIGITAL CLOCK Large 57mm clock & temperature display with extra unique feature Total solder points: 263 Difficulty level: beginner 1 2 3 4 5 advanced K8089 ILLUSTRATED ASSEMBLY MANUAL H8089IP-1

More information

H-Bridge Motor Control

H-Bridge Motor Control University of Pennsylvania Department of Electrical and Systems Engineering ESE 206: Electrical Circuits and Systems II Lab H-Bridge Motor Control Objective: The objectives of this lab are: 1. To construct

More information

AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735

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

More information

Installation & User Guide

Installation & User Guide For use with: Power Pucks Amplifier System (p/n: 2120-0149) Power Pucks + 5-1/4" Coaxial Speakers (p/n: 2120-0151) Power Pucks + 6-1/2" Coaxial Speakers (p/n: 2120-0152) Installation & User Guide Specifications:

More information

Microcontroller to Sensor Interfacing Techniques

Microcontroller to Sensor Interfacing Techniques to Sensor Interfacing Techniques Document Revision: 1.01 Date: 3rd February, 2006 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970 Fax: 1-281-416-2806 E-mail: info@bipom.com

More information

How to Make a Pogo Pin Test Jig. Created by Tyler Cooper

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

More information

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide

Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Data Acquisition Module with I2C interface «I2C-FLEXEL» User s Guide Sensors LCD Real Time Clock/ Calendar DC Motors Buzzer LED dimming Relay control I2C-FLEXEL PS2 Keyboards Servo Motors IR Remote Control

More information

Bill of Materials: Line Follower: A Zippy Robot That Senses Where to Go PART NO. 2170783

Bill of Materials: Line Follower: A Zippy Robot That Senses Where to Go PART NO. 2170783 Line Follower: A Zippy Robot That Senses Where to Go PART NO. 2170783 This kit has the parts you'll need with the exception of a few craft items sold separately to make a line-following cart. It uses a

More information

Modular I/O System Analog and Digital Interface Modules

Modular I/O System Analog and Digital Interface Modules OPERATING INSTRUCTIONS Modular I/O System Analog and Digital Interface Modules Installation Operation Maintenance Document Information Document ID Title: Operating Instructions Modular I/O System Part

More information

Contents. Document information

Contents. Document information User Manual Contents Document information... 2 Introduction... 3 Warnings... 3 Manufacturer... 3 Description... Installation... Configuration... Troubleshooting...11 Technical data...12 Device Scope: PCB

More information

Changers Kalhuohfummi User Manual

Changers Kalhuohfummi User Manual Changers Kalhuohfummi User Manual Contents 02 Contents 1. The Changers Kalhuohfummi an introduction to your solar battery 2. Introduction to energy tracking 3. Content and compatibility 4. Controls and

More information

Adafruit Proto Shield for Arduino

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

More information

Before installation it is important to know what parts you have and what the capabilities of these parts are.

Before installation it is important to know what parts you have and what the capabilities of these parts are. INSTALLATION GUIDE Before installation it is important to know what parts you have and what the capabilities of these parts are. The Recon XZT is the smallest and most powerful gauge of its kind. With

More information

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors.

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors. LM 358 Op Amp S k i l l L e v e l : I n t e r m e d i a t e OVERVIEW The LM 358 is a duel single supply operational amplifier. As it is a single supply it eliminates the need for a duel power supply, thus

More information

0.9V Boost Driver PR4403 for White LEDs in Solar Lamps

0.9V Boost Driver PR4403 for White LEDs in Solar Lamps 0.9 Boost Driver for White LEDs in Solar Lamps The is a single cell step-up converter for white LEDs operating from a single rechargeable cell of 1.2 supply voltage down to less than 0.9. An adjustable

More information

LAB2 Resistors, Simple Resistive Circuits in Series and Parallel Objective:

LAB2 Resistors, Simple Resistive Circuits in Series and Parallel Objective: LAB2 Resistors, Simple Resistive Circuits in Series and Parallel Objective: In this lab, you will become familiar with resistors and potentiometers and will learn how to measure resistance. You will also

More information

Operating instructions Diffuse reflection sensor. OJ50xx 701396 / 01 07 / 2004

Operating instructions Diffuse reflection sensor. OJ50xx 701396 / 01 07 / 2004 Operating instructions Diffuse reflection sensor OJ50xx 7096 / 0 07 / 004 Contents Preliminary note. Symbols used Function and features Installation. Installation of the supplied mounting fixture 4 4 Electrical

More information

USB + Serial RGB Backlight Character LCD Backpack

USB + Serial RGB Backlight Character LCD Backpack USB + Serial RGB Backlight Character LCD Backpack Created by Tyler Cooper Last updated on 2015-11-30 02:10:10 PM EST Guide Contents Guide Contents Overview USB or TTL Serial Assembly Sending Text Testing

More information

CruzPro VAF110. AC Volts, Amps, Frequency, kw Monitor

CruzPro VAF110. AC Volts, Amps, Frequency, kw Monitor CruzPro VAF110 AC Volts, Amps, Frequency, kw Monitor Table of Contents Introduction............................ 3 Specifications........................... 4 Installation..............................5

More information

Build- It- Yourself: So2ware Oscilloscope and Func:on Generator

Build- It- Yourself: So2ware Oscilloscope and Func:on Generator Build- It- Yourself: So2ware Oscilloscope and Func:on Generator David Stein (dstein3@gmu.edu; hfp://djstein.com) Adapted from earlier projects by Alireza Akhavian (GMU) and Jan Henrik (hfp://instructables.com)

More information

3. SEISCO PARTS & SERVICE REMOVAL AND REPAIR GUIDE

3. SEISCO PARTS & SERVICE REMOVAL AND REPAIR GUIDE 4 3. SEISCO PARTS & SERVICE REMOVAL AND REPAIR GUIDE A. Changing the Control Board B. Replacing a Heating Element C. Thermistor Replacement D. High Limit Switch Replacement E. Level Detector Replacement

More information

Cross-beam scanning system to detect slim objects. 100 mm 3.937 in

Cross-beam scanning system to detect slim objects. 100 mm 3.937 in 891 Object Area Sensor General terms and conditions... F-17 Related Information Glossary of terms... P.1359~ Sensor selection guide...p.831~ General precautions... P.1405 PHOTO PHOTO Conforming to EMC

More information

RESISTANCE SUBSTITUTION BOX

RESISTANCE SUBSTITUTION BOX RESISTANCE SUBSTITUTION BOX MODEL RS-400 / K-37 Assembly and Instruction Manual TM Elenco Electronics, Inc. Copyright 1990 Elenco TM Electronics, Inc. Revised 2003 REV-G 753RS400 The Resistance Substitution

More information

ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL

ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL ARDUINO SEVERINO SERIAL SINGLE SIDED VERSION 3 S3v3 (REVISION 2) USER MANUAL X1: DE-9 serial connector Used to connect computer (or other devices) using RS-232 standard. Needs a serial cable, with at least

More information