Full Integration of GPS System on Arduino

Size: px
Start display at page:

Download "Full Integration of GPS System on Arduino"

Transcription

1 Full Integration of GPS System on Arduino Alex (Seong Hoon) Lee 1, Professor Robert Winglee 2, 1 Unviersity of Washington, Electrical Engineering Dept. 2 University of Washington, Earth and Space Sciences Dept. 4 November 2017

2 Contents 1 Arduino DC Barrel Plug Modification and Data Output Instructions Desoldering the DC Power Barrel Data Retrieval from Arduino Increasing Structural Integrity of microsd Shield and LCD Panel Data Display Initial Setup Increasing Structural Integrity of microsd Shield LCD Panel Installation and Code Modifications LCD Panel Data Display GPS Data - Retrieving, Storing, and Displaying on LCD Strengthening the Structural Integrity Installing the GPS module Code Instructions Full Integration of GPS System on Arduino Soldering Together the Wires Finalized Product

3 1 Arduino DC Barrel Plug Modification and Data Output Instructions This section will be provided as a guide to modify an Ardunio s DC power barrel that is too large for this particular setup shown in Figure 1. This particular brand of Arduino is called SparkFun Inventor s Kit V3.3. Figure 1: Arduino setup with DC Barrel Plug A closer look on the side, as seen in Figure 2, gives a clearer representation of the problem. The elevated printed circuit board (PCB), called SparkFun microsd Shield, might have connectivity issues with the installed components, including the Micro SD card slot which will be used later in this instruction. Figure 2: Side view of the Arduino with DC Barrel Plug A solution to this problem is to desolder the DC Barrel Plug from the PCB. As seen in Figure 3, there are two power inputs, the DC Barrel Plug and a Mini USB port. Since the device has two power input ports, the DC Barrel Plug can be removed and the Mini USB port can be used as the primary power input port. Figure 3: Front view of the Arduino with DC Barrel Plug 1

4 1.1 Desoldering the DC Power Barrel The following items and safety conditions are needed for a successful desoldering of the DC Power Barrel: Soldering Iron Controller Mechanical Desoldering Pump Well ventilated room Gloves to protect your hand Protective goggles for your eyes Masks to prevent from inhaling unhealthy smoke Once all items and safety conditions are prepared, we can proceed with the desoldering process. 1. Place the Arduino on a safe surface. In this case, a removable wooden board is used. 2. Connect the soldering iron controller to a power outlet, set the power to maximum, and wait around 3-5 mintues for the soldering iron to heat up. 3. Once it has heated up, place the tip of the soldering iron onto one of the silver prongs of DC Power Barrel that is connected to the PCB, as shown in Figure 4. Tip: Gently press on the silver prong to squeeze out the solder beneath the silver prongs. Figure 4: Placement of Soldering Iron on one of the silver prongs 4. Once you can visibly see the melted solder, place the soldering iron into its stand and use the mechanical desoldering pump to pump up the solder, as can be seen in Figure 5. Tip: The best way to ensure that all melted solder is sucked up is to press the tip of the desoldering pump vertically onto the silver prong to create a seal, and pressing the release button to suck up the solder. 2

5 Figure 5: Placement of mechanical desoldering pump on one of the silver prongs with melted solder 5. Repeat steps 3 and 4 for about five times per prong to ensure that the majority of the solder has been removed. 6. Once the solders has been removed, place the iron solder on one of the prongs located closer to the edge of the PCB, as seen in Figure 4, and heat up the prong for approximately thirty seconds. Place the iron solder into its stand and gently lift up the DC Power Barrel so that the heated up prong is now disconnected from the PCB. 7. Repeat Step 6 for the remaining prongs and fully disconnect the DC Power Barrel, as shown in Figure 6, and place it in a safe place for possible use in the future. Figure 6: Removed DC Power Barrel next to the Arduino As shown in Figure 7, the second PCB can be installed onto the original Arduino PCB without any odd elevation caused by the DC Power Barrel. 3

6 Figure 7: Final installation of the second PCB onto the Arduino 1.2 Data Retrieval from Arduino Retrieving data from Arduino requires programming knowledge (preferably CSE 142) if the student desires to modify the provided code for personal use. However, the code that will be used in this documentation will be provided with appropriate comments, from both the SparkFun company and myself, so any student with minimal knowledge of programming experience can follow and modify as needed. Before proceeding, we must build a simple photoresistor circuit that we can use to retrieve the data to our microsd card. Before proceeding, please have the following items ready: Photo Resistor LED (5mm) 330Ω Resistor 10KΩ Resistor 6 Jumper Wires Please follow the official guide book that came with the kit to build the circuit, as shown in Figure 7. After building the circuit, download Arduino IDE from the official website: You must also install the correct drivers called FTDI drivers from the official SparkFun website: Without the FTDI drivers, your computer may not be able to correctly detect the Arduino device. For this particular configuration, a 32GB microsd HC card will be used. Any microsd card with any size bigger than 1GB can be used for this project. Before using the microsd card, please format it as FAT file system. This is the primary file system that Arduino uses to read and write data. 4

7 Figure 8: Photoresistor Circuit #6 from SparkFun Inventor s Kit Manual Once everything is set-up, proceed with inserting the microsd card and powering the device by connecting the Arduino to the computer via mini-usb to USB cable, as shown in Figure 9. Figure 9: 32GB microsd Card In order to capture the data from the circuit, we must download the following code: 1 / 2 SparkFun I n v e n t o r s Kit 3 Example s k e t c h PHOTO RESISTOR 6 7 Use a p h o t o r e s i s t o r ( l i g h t s e n s o r ) to c o n t r o l the b r i g h t n e s s 8 o f a LED This s k e t c h was w r i t t e n by SparkFun E l e c t r o n i c s, 11 with l o t s o f help from the Arduino community. 12 This code i s c o m p l e t e l y f r e e f o r any use. 13 V i s i t http : / / l e a r n. sparkfun. com/ products /2 f o r SIK i n f o r m a t i o n. 5

8 14 V i s i t http : / /www. arduino. cc to l e a r n about the Arduino Version /2012 MDG 17 Version /2014 BCH 18 / / #i n c l u d e <SPI. h> 21 #i n c l u d e <SD. h> F i l e myfile ; // As usual, we l l c r e a t e c o n s t a n t s to name the p i n s we r e u s i n g. 26 // This w i l l make i t e a s i e r to f o l l o w the code below c o n s t i n t s e n s o r P i n = 0 ; 29 c o n s t i n t ledpin = 9 ; // We l l a l s o s e t up some g l o b a l v a r i a b l e s f o r the l i g h t l e v e l : 32 i n t l i g h t L e v e l ; 33 i n t c a l i b r a t e d l i g h t L e v e l ; // used to s t o r e the s c a l e d / c a l i b r a t e d l i g h t L e v e l 34 i n t maxthreshold = 0 ; // used f o r s e t t i n g the max l i g h t l e v e l 35 i n t minthreshold = ; // used f o r s e t t i n g the min l i g h t l e v e l void setup ( ) 38 { 39 pinmode ( ledpin, OUTPUT) ; // Set up the LED pin to be an output. 40 S e r i a l. begin ( ) ; w h i l e (! S e r i a l ) { 43 ; // wait f o r s e r i a l port to connect. Needed f o r n a t i v e USB port only 44 } S e r i a l. p r i n t ( I n i t i a l i z i n g SD card... ) ; i f (! SD. begin ( 4 ) ) { 50 S e r i a l. p r i n t l n ( i n i t i a l i z a t i o n f a i l e d! ) ; 51 r e t u r n ; 52 } 53 S e r i a l. p r i n t l n ( i n i t i a l i z a t i o n done. ) ; // open the f i l e. note that only one f i l e can be open at a time, 56 // so you have to c l o s e t h i s one b e f o r e opening another. 57 myfile = SD. open ( t e s t. t x t, FILE WRITE) ; // i f the f i l e opened okay, w r i t e to i t : 60 i f ( myfile ) { 61 S e r i a l. p r i n t ( Writing to t e s t. t x t... ) ; 62 myfile. p r i n t l n ( t e s t i n g 1, 2, 3. ) ; 63 // c l o s e the f i l e : 64 myfile. c l o s e ( ) ; 65 S e r i a l. p r i n t l n ( t e s t i n g done. ) ; 66 } e l s e { 67 // i f the f i l e didn t open, p r i n t an e r r o r : 68 S e r i a l. p r i n t l n ( e r r o r opening t e s t. t x t ) ; 69 } 70 } // the f o l l o w i n g f u n c t i o n w i l l be c a l l e d i n an i n f i n i t e loop 73 void loop ( ) 6

9 74 { 75 l i g h t L e v e l = analogread ( s e n s o r P i n ) ; // r e a d s the v o l t a g e on the s e n s o r P i n 76 S e r i a l. p r i n t l n ( l i g h t L e v e l ) ; // d i s p l a y s the l i g h t L e v e l to the s e r i a l monitor 77 myfile = SD. open ( t e s t. t x t, FILE WRITE) ; // opens the t e s t. t x t f i l e 78 myfile. p r i n t ( Light Level : ) ; // p r i n t s the s t r i n g to the f i l e 79 myfile. p r i n t ( l i g h t L e v e l ) ; // p r i n t s the v a r i a b l e l i g h t L e v e l to the f i l e // s c a l e the l i g h t L e v e l from range to range. 82 c a l i b r a t e d l i g h t L e v e l = map( l i g h t L e v e l, 0, 1023, 0, 255) ; 83 // the map ( ) f u n c t i o n a p p l i e s a l i n e a r s c a l e / o f f s e t. 84 // map( inputvalue, frommin, frommax, tomin, tomax ) ; 85 S e r i a l. p r i n t ( \ t ) ; // tab c h a r a c t e r // p r i n t l n p r i n t s an CRLF at the end ( c r e a t e s a new l i n e a f t e r ) 88 S e r i a l. p r i n t ( c a l i b r a t e d l i g h t L e v e l ) ; // p r i n t s the s t r i n g to the f i l e 91 myfile. p r i n t ( C a l i b r a t e d Light Level : ) ; // p r i n t s the v a r i a b l e c a l i b r a t e d l i g h t L e v e l to the f i l e 94 myfile. p r i n t l n ( c a l i b r a t e d l i g h t L e v e l ) ; 95 myfile. c l o s e ( ) ; // c l o s e s the f i l e // s e t the l e d l e v e l based on the input l i g h t L e v e l. 98 analogwrite ( ledpin, c a l i b r a t e d l i g h t L e v e l ) ; 99 } There are few key elements of the code that must be understood. 1. Line 23: This sets the variable myfile as a File, a global variable recognizable by any function in this program. 2. Lines 28 and 29: sensorpin and ledpin are constants, and the int variables 0 and 9 are simply the pin numbers from the Arduino to connect to the circuit elements. Any circuit element connected to a pin can be used, meaning other elements such as resistors and buttons can be assigned as a constant. 3. Lines 57 and 77: The string text.txt can be renamed to any.txt file. 4. Lines 61, 65, 76, 85, and 88: The command Serial is used to print the variable in the parenthesis to the Serial Monitor. Before running the program, you can open Serial Monitor window by heading over to Tools -> Serial Monitor. This allows you to view what is being written on the Serial Monitor. 5. Lines 75: analogread allows you to read the data from a designated circuit element connected to a pin. In this case, sensorpin is used to store its value into lightlevel from the photoresistor. Before running the code, head to Tools -> Port and select COM3 on Windows, and /dev/cu.usb on Mac or Linux. Selecting the proper port allows you to be connected to the Arduino. For more detailed instructions or troubleshooting, please head over to the aforementioned link to the FTDI drivers. After compiling and uploading the program, you can exit the program by simply unplugging the USB cable from your computer or taking out the microsd card. In the microsd 7

10 card, you should find a file named TEST.txt. Figure 11. The file should look like Figure 10 and Figure 10: TEST.txt data, with high intensity light on the photo resistor Figure 11: TEST.txt data, with low intensity light on the photo resistor 8

11 2 Increasing Structural Integrity of microsd Shield and LCD Panel Data Display This section will be provided as a guide to increase the structural integrity of the microsd shield, connecting and displaying data to LCD Panel, and retrieving data from the GPS antenna. The final setup is shown below, provided by Professor Robert Winglee and Professor Michael McCarthy, as shown in Figure 12 below: Figure 12: Final Setup of Arduino with GPS Antenna The goal is to replicate the setup and create an ideal circuit environment to retrieve GPS data from a remote device. 2.1 Initial Setup Before proceeding, the Arduino and the breadboard must be mounted on a given base. For the following instructions, the base should be oriented so that the words Sparkfun Electronics is at the bottom. Please have the following items from the SparkFun Inventor s Kit at hand: SparkFun Electronics Base SparkFun Inventor s Kit Arduino Circuit breadboard Two screws Screw Driver (not included in the kit) 1. Peel off the plastic layer at the bottom of the breadboard and attach it to left hand side of the base. 2. Place the Arduino on the right hand side of the base, but make sure to orient the Arduino so that the mini-usb port is pointing up. This is crucial in installing the screws in the next step. 9

12 3. As shown in Figure 13 below, install the first screw at an opening located at the bottom left. This opening is located next to the A5 Analog In pin. Caution: Do not install the screw too tight. Doing so might damage the board. A slightly loose installation will make sure that the circuit board is not bent too much. Figure 13: Installation of the first screw 4. As shown in Figure 14 below, install the second screw at an opening located at the top right. This opening is located between the SCL Digital pin and the Reset button. Again, do not screw in too tight, or the board may break. Figure 14: Installation of the second screw The following Figure 15 is the completed version of the circuit with proper screws installed. We can now proceed with the next section. 10

13 Figure 15: Two screws installed on the Arduino circuit board 2.2 Increasing Structural Integrity of microsd Shield The PCB Socket Pin, as shown in Figure 16, is used to install the microsd shield on top of the Arduino board. However, the pins are slightly smaller than the circle opening of the microsd shield, and it creates a small gap where no electric current is able to flow through. This causes problems, because the lower electric current is not capable of powering the elements on the shield, including the microsd card. Attempting to access the microsd card, including writing and reading from the card, will result in failure. Figure 16: One of four of the provided PCB Socket Pin In order to fix this problem, the 3.3V socket must be soldered to ensure a constant and stable current flow. The problem is apparent where the power LED on the microsd shield does not turn on when connected to a power source via mini-usb port, as seen in Figure 17. However, as shown in Figure 18, connecting a wire at the 3.3V pin turns the power LED on. A solution to this problem is to solder a small wire to the 3.3V socket to connect the shield to the Arduino board. A short instruction is provided below: 1. Make sure to disconnect ALL power connected to the Arduino device. This will ensure that you do not accidentally short circuit the device, or damage the components. 2. Test the connectivity of the current by placing a small wire that has been bent 90 11

14 Figure 17: microsd Shield power LED Off Figure 18: microsd Shield power LED On degrees, as shown in Figure 19. This ensures that the wire is connected to the 3.3V socket. Figure 19: microsd Shield Wire Test for Constant Current Flow 3. Solder the wire to the board, as shown in Figure

15 Figure 20: Soldering on a wire to the microsd Shield 4. In order to place the socket pin properly, bend the 3.3V pin slightly, approximately degrees, to the right, as shown in Figure 21 Figure 21: Soldering on a wire to the microsd Shield 5. Install the bent PCB socket pin onto the board, and make sure the bent pin is not touching the microsd shield. As shown in Figure 22, power on the device to test see whether the power LED turns on. Figure 22: Installation of the bend PCB Socket Pin on a soldered wire 13

16 C M Y K If the power LED is not turned on, there are few possible solutions: test the other sockets by touching the wire between the pin and the socket and repeat the above process, or solder the entire pins to the board (which is not recommended for testing phase). Since the structural integrity is critical in any mission, this step can be repeated for other pins to ensure that the electric current flow is constant through the final mission. However, for the purpose of flexibility and testing, soldering one socket should suffice. 2.3 LCD Panel Installation and Code Modifications For the installation of the LCD Panel, please follow the guide number 15 on SIK Guide. The following items are needed from the kit: Potentiometer 16 Jumper Wires The following Figure 23 is the circuit outline, courtesy of SparkFun: CMY CY MY CM Page 78 Circuit 15: LCD 7-15V IOREF RESET 3.3V 5V GND GND VIN A0 A1 A2 A3 A4 A5 POWER ANALOG IN ISP LEARN. SHARE. HACK. 13 TX RX ON RESET SCL SDA AREF GND ~11 ~10 ~9 8 DIGITAL (PWM~) 7 ~6 ~5 4 ~3 2 TX 1 RX 0 a b c d e f g h i a b c d e f g h i SFE03_LCD_circuit4_01.pdf 3 8/5/14 8:55 PM Figure 23: SIK Guide #15 Keep in mind that although the layout is reversed (breadboard on the left instead of on the right as shown in Figure 23, the circuit will work just the same if all the pins are connected correctly. For instance, in our setup, the breadboard will be on the left, leaving us to place the LCD on the a column, starting from pin number a1 through a16. In this case, instead of 14

17 connecting the jumper wire from 11 digital pin from the Arduino to the f25 on the breadboard as instructed, connect the jumper wire from 11 digital pin to e6 on the breadboard. After installing all the necessary components, the final installation should look similar to Figure 24: Figure 24: SIK Guide #15 To ensure that the microsd card is working with the component, connect the Arduino to the computer, download this code written by SparkFun, and run the code. This code ensures that the connected SD card is formatted correctly and readable. A proper output should look like the following Figure 25 on the Serial Monitor window: Figure 25: Proper SD Card Check Serial Monitor Window 15

18 2.4 LCD Panel Data Display Using the code #15 from SparkFun Inventor s Kit code sample package, we are able to display a string of text onto the LCD panel as shown in Figure 26. Figure 26: LCD Panel Code Initial Test Modifying the string at line 50 lcd.print("hello, world!"); into anything else will be displayed on the LCD panel, but a string longer than 16 characters it will not use the second row of the display. The string will instead be cut off. The reasoning is because of the commands written in void loop() that displays the run-time of the code. The run-time is the number of seconds after the code starts running. The following will provide a short guide to use both rows: 1. To get rid of the run-time, you either comment out the two lines of code or comment it out by typing // in front of the codes. 2. Now, back to line 50, you can change the string to anything under 16 characters, such as Univ. Washington. 3. Make a new line, which will be line 51. Here, type in the following code: lcd.setcursor(0, 1);. This will allow the user to set the cursor to the second row. 4. Make a new line, which will be line 52. Here, the user can write a new string. In this case, we will use lcd.print("ess Department");. You can download the finalized code here. Once everything is complete, run the code, and the result should look like Figure

19 Figure 27: LCD Panel Code Final Test 17

20 3 GPS Data - Retrieving, Storing, and Displaying on LCD This section will provide a step-by-step guide to creating an Arduino setup that is capable of using a GPS Module (link) to retrieve, store, and display the GPS data. 3.1 Strengthening the Structural Integrity This specific type of Arduino has issues with powering the microsd shield. Since the four socket pins that are holding the two boards together have spaces to freely move around while mounted, there is not a sufficient amount of current passing through to provide consistent current to power the microsd shield. In order to resolve this issue, we must solder in the four socket pins to the microsd shield. These pins can be easily removed if needed using proper equipment. By using a soldering wire and a soldering machine, solder the four socket pins like so in Figure 28: Figure 28: Soldering the socket pins Once every socket pins are soldered in, the result should look like so: Figure 29: Finished product of soldered pins 18

21 Finally, install the microsd shield onto the Arduino. If everything went correctly, you should see a red power led turn on. This light should stay on. Figure 30: Mouting the soldered microsd shield onto the Arduino Since the microsd shield will not freely move around, the Arduino is able to receive a consistent power to operate the mounted microsd card. 3.2 Installing the GPS module Installing the GPS module onto the Arduino is quite simple. For the given module purchased from Amazon, we can use female-to-male jumper wire to connect the device. 1. Connect the pin from TXD to pin #6. 2. Connect the pin from RXD to pin #7. 3. Connect the pin from GND, preferably using a black wire to follow the convention, to the negative node on the breadboard. 4. Connect the pin from VCC, preferably using a red wire to follow the convention, to the positive node on the breadboard. After the setup is complete, it should look similar to Figure 31: Figure 31: Soldering the socket pins 19

22 3.3 Code Instructions The final code can be downloaded here: It is highly recommended that you download the code to follow the rest of the instructions. Full disclosure: the sample codes and libraries originally provided by the authors of SparkFun and TinyGPS++ has been used to write the aforementioned code. Please refer to Arduino s official website for more information on the usage of SoftwareSerial.h and LiquidCrystal.h. Line 1-21 describes the general setup of the library and the constants. Be sure to download TinyGPS++ library and install it into a correct directory. Be sure to rename the library folder TinyGPSPlus-0.95 (version 0.95 in this case) to TinyGPSPlus. Typically, the correct directory to the library folder would be in: for macos: ~/Documents/Arduino/libraries/ for Windows: My Documents\Arduino\libraries\ Since the raw GPS data is usually incomprehensible, the use of TinyGPS++ library will allow for easier parsing of the data. The void setup() helps us set up the environment. There is a safety mechanism to let the user know that the microsd card is being detected or not. In the void loop() function, the longitude and latitude data is used to display onto the serial monitor, write on the microsd card, and display on the LCD panel. More information can be stored, including more decimal points of the longitude and latitude data, time stamp, altitude, and velocity: latitude: gps.location.lat() longitude: gps.location.lng() altitude: gps.altitude.meters() velocity: gps.speed.kmph() The function smartdelay is used to ensure that the GPS data is read and displayed on a proper interval. After running the device for a test-run, we get the following results: 20

23 Figure 32: Serial Monitor Results Figure 33: Serial Monitor Results 21

24 4 Full Integration of GPS System on Arduino This section will provide a step-by-step guide to creating a fully integrated GPS tracking system on an Arduino. 4.1 Soldering Together the Wires As can be sen in Figure 34, the previous GPS tracking device needed a breadboard to run the system. However, by soldering all of the components together onto the microsd shield of the Arduino device, we are able to create a more compact form factor of the GPS tracking device. Figure 34: Previous Work of GPS tracking system with breadboard First order of business involves soldering the 5V and the ground pin to the microsd shield. Since the microsd shield has extra pin holes for other components to be integrated, we will be using the pin holes to power the potentiometer, LCD display, and the GPS tracking device. Please take off all of the components, including the wires that are connected to the microsd shield, and wire the 5V power and the ground pin like the following Figure 35. Following the convention of red wire for power and black wire for ground will make the following process easier. Figure 35: Initial Wiring of 5V and GND pins 22

25 Wire the LCD display accordingly, as per instructed in SparkFun Inventor s Kit Guide, using female-to-male jumper wires. This comes in handy because the pins that are attached to the LCD display uses male pins, so using female-to-male jumper wires does not require extra soldering. Figure 36: Attachment of female-to-male jumper wires on LCD display Repeat the same process for the potentiometer and the GPS receiver, wiring the power components using female-to-male jumper wires. Place all of the male pins for 5V power in pin holes surrounding the red wire intended for 5V pin, and place all of the male pins for ground pin in pin holes surrounding the black wire intended for GND pin. Figure 37: Placement of power pins on microsd shield Flip the microsd shield, and make sure that all the pins are in place. Now, solder the pins together in their own group; 5V to 5V, and GND to GND. It is possible to push the pins so that the wire will be closer to the main wire that will provide 5V power supply and GND pin connection, as shown in Figure

26 Figure 38: Soldered pins in their own group Once the wiring is done, it should look like the following Figure 39. Figure 39: Soldered components Lastly, place all of the pins in correct places. For the GPS receiver: 1. Connect the pin from TXD to pin #6. 2. Connect the pin from RXD to pin #7. For the LCD display, please make the following modifications like in the last instruction: 1. Move the pin from #12 to # Move the pin from #11 to #9. 3. Move the pin from #4 to #8. The reasoning for such modification is to not to interfere with the microsd shield writing the data to the microsd card itself. 24

27 4.2 Finalized Product Once everything is connected, you can attach the microsd card and power the Arduino. If everything is working correctly, it should look like Figure 40. Figure 40: Finalized Product In order to test the GPS tracking system, you can download the code using the following link: Please be sure to have TinyGPS++ library downloaded and and installed to a correct directory. Be sure to rename the library folder TinyGPSPlus-0.95 (version 0.95 in this case) to TinyGPSPlus. Typically, the correct directory to the library folder would be in: for macos: ~/Documents/Arduino/libraries/ for Windows: My Documents\Arduino\libraries\ 25

P8X32A-Q44 SchmartBoard (#27150)

P8X32A-Q44 SchmartBoard (#27150) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (9) - Fax: (9) -00 Sales: () -0 Tech Support: () 99- PXA-Q SchmartBoard (#0) Want

More information

Quick Start Guide New Mountain Visit our Website to Register Your Copy (weatherview32.com)

Quick Start Guide New Mountain Visit our Website to Register Your Copy (weatherview32.com) Quick Start Guide New Mountain Visit our Website to Register Your Copy (weatherview32.com) Page 1 For the best results follow all of the instructions on the following pages to quickly access real-time

More information

Assembly and Operation Manual. April 2016

Assembly and Operation Manual. April 2016 Assembly and Operation Manual April 2016 Table of Contents What is in the OurWeather Box? 3 Step by Step Assembly 13 Building the Weather Sensors 18 Testing the OurWeather Weather Station 28 Power Up OurWeather

More information

SC125MS. Data Sheet and Instruction Manual. ! Warning! Salem Controls Inc. Stepper Motor Driver. Last Updated 12/14/2004

SC125MS. Data Sheet and Instruction Manual. ! Warning! Salem Controls Inc. Stepper Motor Driver.   Last Updated 12/14/2004 SC125MS Stepper Motor Driver Salem Controls Inc. Last Updated 12/14/2004! Warning! Stepper motors and drivers use high current and voltages capable of causing severe injury. Do not operate this product

More information

ISSP User Guide CY3207ISSP. Revision C

ISSP User Guide CY3207ISSP. Revision C CY3207ISSP ISSP User Guide Revision C Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com Copyrights Copyrights

More information

A clock designed in close consultation with people living with Dementia.

A clock designed in close consultation with people living with Dementia. 1. Product Name Day Clock 2. Product Code 55787 3. Colour As shown 4. Brief Description A clock designed in close consultation with people living with Dementia. 5. Contents 1 x Day Clock 6. Snoezelen Stimulations

More information

CS ProtoBox. Available 15 Sept 2014 at the Stores shop.

CS ProtoBox. Available 15 Sept 2014 at the Stores shop. CS ProtoBox Available Sept 0 at the Stores shop. The content of the CS Protobox is similar to the Create Protobox. The Arduino Uno, USB A B cable, DC Motor, Battery and Clip are replaced by a USB Power

More information

User's Guide. DISTO online. Leica Geosystems

User's Guide. DISTO online. Leica Geosystems User's Guide DISTO online Leica Geosystems Copyright 2001 by PMS Photo Mess Systeme AG. All rights reserved. This manual describes the versions 2.x of the program DISTO online. PMS PHOTO-MESS-SYSTEME AG

More information

Data Logger V2. Instruction Manual

Data Logger V2. Instruction Manual Data Logger V2 Instruction Manual Joe Holdsworth 7-29-2018 Contents Revision History... 2 Specifications... 3 Power Limits... 3 Data Rates... 3 Other Specifications... 3 Pin Outs... 4 AS218-35SN... 4 AS210-35SN...

More information

PCAN-MicroMod Evaluation Kit. Test and Development Environment for the PCAN-MicroMod. User Manual

PCAN-MicroMod Evaluation Kit. Test and Development Environment for the PCAN-MicroMod. User Manual Test and Development Environment for the PCAN-MicroMod Products taken into account Product Name Item Number Model PCAN-MicroMod Evaluation Kit (incl. PCAN-Dongle) PCAN-MicroMod Evaluation Kit (incl. PCAN-USB)

More information

Experiment A11 Chaotic Double Pendulum Procedure

Experiment A11 Chaotic Double Pendulum Procedure AME 21216: Lab I Fall 2017 Experiment A11 Chaotic Double Pendulum Procedure Deliverables: Checked lab notebook, plots with captions Background Measuring and controlling the angular position and velocity

More information

S Sapling INSTALLATION MANUAL FOR FIELD SELECTABLE ANALOG CLOCKS SAA SERIES SPECIFICATIONS. advanced time and control systems

S Sapling INSTALLATION MANUAL FOR FIELD SELECTABLE ANALOG CLOCKS SAA SERIES SPECIFICATIONS. advanced time and control systems INSTALLATION MANUAL FOR FIELD SELECTABLE ANALOG CLOCKS SAA SERIES SPECIFICATIONS Time base: 60 Hz (3-wire system) Quartz (2-wire system) Power input: 85 135 VAC / 60 Hz 7 28 VAC / 60 Hz Current consumption:

More information

Acceleration, Velocity, Separate probe VIBRATION METER Model : VB-8202

Acceleration, Velocity, Separate probe VIBRATION METER Model : VB-8202 Acceleration, Velocity, Separate probe VIBRATION METER Model : VB-8202 Your purchase of this VIBRATION METER marks a step forward for you into the field of precision measurement. Although this METER is

More information

OPERATION MANUAL. Acceleration, Velocity RMS measurement, Metric & Imperial unit PEN VIBRATION METER Model : PVB-820

OPERATION MANUAL. Acceleration, Velocity RMS measurement, Metric & Imperial unit PEN VIBRATION METER Model : PVB-820 Acceleration, Velocity RMS measurement, Metric & Imperial unit PEN VIBRATION METER Model : PVB-820 Your purchase of this PEN VIBRATION METER marks a step forward for you into the field of precision measurement.

More information

Assembly Instructions for the 1-Wire Weather Station V2.0/V3.0

Assembly Instructions for the 1-Wire Weather Station V2.0/V3.0 Assembly Instructions for the 1-Wire Weather Station V2.0/V3.0 Tools and Supplies Required (not included): Phillips screwdriver 3/8" wrench Drill with 5/32" bit "U" type mounting bracket (i.e., part number

More information

Laboratory 3 Measuring Capacitor Discharge with the MicroBLIP

Laboratory 3 Measuring Capacitor Discharge with the MicroBLIP Laboratory 3 page 1 of 6 Laboratory 3 Measuring Capacitor Discharge with the MicroBLIP Introduction In this lab, you will use the MicroBLIP in its Data Acquisition Mode to sample the voltage over time

More information

PoleMaster User Manual (Northern Hemisphere)

PoleMaster User Manual (Northern Hemisphere) PoleMaster User Manual (Northern Hemisphere) 1. Hardware Installation 1.1 Attach the PoleMaster camera unit to the quick install plate using the three bolts supplied. In the case of the AZ EQ5-GT and Mesu

More information

RECON. How to Setup the Telescope to Observe. This guide will show you how to setup your telescope for observing. Written By: Brittany McCrigler

RECON. How to Setup the Telescope to Observe. This guide will show you how to setup your telescope for observing. Written By: Brittany McCrigler RECON How to Setup the Telescope to Observe This guide will show you how to setup your telescope for observing. Written By: Brittany McCrigler 2017 recon.dozuki.com Page 1 of 30 INTRODUCTION This guide

More information

10 - Celestron Telescope II: Operation

10 - Celestron Telescope II: Operation 10 - Celestron Telescope II: Operation Purpose: Gain more experience setting up a 6 Celestron telescope, familiarize yourself with the software interface, and acquire an image with the CCD camera. Due:

More information

Digital Design through Arduino

Digital Design through Arduino 1 Digital Design through Arduino G V V Sharma Contents 1 Display Control through Hardware 1 1.1 Components......... 1 1.2 Powering the Display.... 1 1.3 Controlling the Display... 2 2 Display Control through

More information

Using a Microcontroller to Study the Time Distribution of Counts From a Radioactive Source

Using a Microcontroller to Study the Time Distribution of Counts From a Radioactive Source Using a Microcontroller to Study the Time Distribution of Counts From a Radioactive Source Will Johns,Eduardo Luiggi (revised by Julia Velkovska, Michael Clemens September 11, 2007 Abstract In this lab

More information

INSTALLATION INSTRUCTIONS FRONT PLOW MOUNT KIT Part Number: Application: Polaris Sportsman 400, 500, 800

INSTALLATION INSTRUCTIONS FRONT PLOW MOUNT KIT Part Number: Application: Polaris Sportsman 400, 500, 800 WARN INDUSTRIES, INC. 12900 S.E. Capps Road, Clackamas, OR USA 97015-8903, 1-503-722-1200, FAX: 1-503-722-3000 Customer Service: 1-800-543-9276 Dealer Locator Service: 1-800-910-1122 International Sales/Customer

More information

Acceleration/Velocity/Displacement VIBRATION METER

Acceleration/Velocity/Displacement VIBRATION METER Acceleration/Velocity/Displacement VIBRATION METER Model : VB-8220 Your purchase of this VIBRATION METER marks a step forward for you into the field of precision measurement. Although this METER is a complex

More information

CONTENTS. Batteries. La Crosse Technology, Ltd Page 1

CONTENTS. Batteries. La Crosse Technology, Ltd Page 1 515-1316 FAQS The links below will work in most PDF viewers and link to the topic area by clicking the link. We recommend Adobe Reader version 10 or greater available at: http://get.adobe.com/reader CONTENTS

More information

Arduino Weather Station And Ascom Observing Conditions

Arduino Weather Station And Ascom Observing Conditions Arduino Weather Station And Ascom Observing Conditions This is a weather station using Arduino with an Ascom Observing Conditions driver on top so we can plug into various Astronomy Software packages.

More information

SHARK Snow Plow. 52 (132 cm) / 60 (152 cm) Complete system blade INSTRUCTIONS / ESTABLISHMENT

SHARK Snow Plow. 52 (132 cm) / 60 (152 cm) Complete system blade INSTRUCTIONS / ESTABLISHMENT SHARK Snow Plow 52 (132 cm) / 60 (152 cm) Complete system blade INSTRUCTIONS / ESTABLISHMENT OPERATING INSTRUCTIONS Congratulations! You ve just purchased the most durable plow system in the industry.

More information

Richter Optica. Instructions for Model: S850 Stereo Zoom Microscope

Richter Optica. Instructions for Model: S850 Stereo Zoom Microscope Richter Optica info@richter-optica.com Instructions for Model: S850 Stereo Zoom Microscope Microscope Head Focus Knob Stage Clips Zoom Knob C-Mount Adapter Eyepiece Focusing Holder Focusing Holder Set

More information

Installation guide 862 MIT / MIR

Installation guide 862 MIT / MIR Installation guide 862 MIT / MIR in combination with: 864 MTT or 863 MRT or (dual) spot element November 2005 Part no. 4416.232_Rev3 Enraf BV PO Box 812 2600 AV Delft Netherlands Tel. : +31 15 2701 100

More information

Galileo Telescope Solar Viewer Joseph Hora, Elizabeth Hora 2017/09/18

Galileo Telescope Solar Viewer Joseph Hora, Elizabeth Hora 2017/09/18 Galileo Telescope Solar Viewer Joseph Hora, Elizabeth Hora 2017/09/18 17 7.75 5 2 1.5 3 2 1.5 Materials: (all dimensions in inches) 3x plywood sheet 17 x 7.75 x ½ 3x wood block cut from 2x4: 5 x 2 x 1.5

More information

WeatherHub2 Quick Start Guide

WeatherHub2 Quick Start Guide WeatherHub2 Quick Start Guide Table of Contents 1 Introduction... 1 2 Packing List... 1 3 Connections... 1 4 IP Addressing... 2 5 Browser Access... 3 6 System Info... 3 7 Weather Station Settings... 4

More information

TABLE OF CONTENTS. IC Recorder. Model No. RR-US300E. Colour (S)...Silver Type

TABLE OF CONTENTS. IC Recorder. Model No. RR-US300E. Colour (S)...Silver Type ORDER NO. AD1107003CE IC Recorder Model No. RR-US300E Colour (S)...Silver Type TABLE OF CONTENTS PAGE 1 Warning-------------------------------------------------------------- 2 1.1. Prevention of Electrostatic

More information

OPERATION MANUAL. Acceleration, Velocity RMS measurement, Metric & Imperial unit PEN VIBRATION METER Model : PVB-820

OPERATION MANUAL. Acceleration, Velocity RMS measurement, Metric & Imperial unit PEN VIBRATION METER Model : PVB-820 Acceleration, Velocity RMS measurement, Metric & Imperial unit PEN VIBRATION METER Model : PVB-820 Your purchase of this PEN VIBRATION METER marks a step forward for you into the field of precision measurement.

More information

Doc No. KF08-002D. Portable Ultrasonic Flowmeter UFP-20. Installation & Operation Manual

Doc No. KF08-002D. Portable Ultrasonic Flowmeter UFP-20. Installation & Operation Manual Doc No. KF08-002D Portable Ultrasonic Flowmeter UFP-20 Installation & Operation Manual Ultrasonic Flowmeter Safety Precautions The following safety precautions contain important information pertaining

More information

Paramaters. Resolution 0.2 m (for measurements < 25 meas. / sec )

Paramaters. Resolution 0.2 m (for measurements < 25 meas. / sec ) Paramaters Method of altitude measurement: Measuring Range measurement of pressure changes 0-5500 m Resolution 0.2 m (for measurements < 25 meas. / sec ) Accuracy: Supply Voltage: Current consumption:

More information

VELA. Getting started with the VELA Versatile Laboratory Aid. Paul Vernon

VELA. Getting started with the VELA Versatile Laboratory Aid. Paul Vernon VELA Getting started with the VELA Versatile Laboratory Aid Paul Vernon Contents Preface... 3 Setting up and using VELA... 4 Introduction... 4 Setting VELA up... 5 Programming VELA... 6 Uses of the Programs...

More information

2 One-dimensional motion with constant acceleration

2 One-dimensional motion with constant acceleration 2 One-dimensional motion with constant acceleration Experiment objectives: 1. Achieve a better understanding of how to solve position, velocity and acceleration problems in one-dimensional motion with

More information

For Customer Service, Rev A - 6/ OF 6

For Customer Service,  Rev A - 6/ OF 6 Item SP-6219 50 Universal Snow Plow Package RED Plow Item SP-6257 64 Universal Snow Plow Package RED Plow For Customer Service, Email CustomerService@yourfingertips-online.com Please read and understand

More information

STEAM Clown Production. Series Circuits. STEAM Clown & Productions Copyright 2017 STEAM Clown. Page 2

STEAM Clown Production. Series Circuits. STEAM Clown & Productions Copyright 2017 STEAM Clown. Page 2 Production Series Circuits Page 2 Copyright 2017 Series Parallel Circuits + + SERIES CIRCUIT PARALLEL CIRCUIT Page 3 Copyright 2017 Trick to Remember Ohm s Law V V=I*R R = V I I R I = V R Page 4 Copyright

More information

micro:climate Kit Experiment Guide

micro:climate Kit Experiment Guide Page 1 of 36 micro:climate Kit Experiment Guide Introduction to the Micro:Climate Kit Introduction We have seen a huge amount of excitement from hobbyists, students and scientists around building a DIY

More information

ISOCON-6. 24V AC or DC POWERED ISOLATING SIGNAL CONVERTER

ISOCON-6. 24V AC or DC POWERED ISOLATING SIGNAL CONVERTER ISOCON-6 24V AC or DC POWERED ISOLATING SIGNAL CONVERTER Whilst every effort has been taken to ensure the accuracy of this document, we accept no responsibility for damage, injury, loss or expense resulting

More information

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor.

Experiment 4. RC Circuits. Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Experiment 4 RC Circuits 4.1 Objectives Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. Graphically determine the time constant τ for the decay. 4.2

More information

BASIC ELECTRICITY STUDY COURSE

BASIC ELECTRICITY STUDY COURSE BASIC ELECTRICITY STUDY COURSE for Home Appliances HOW TO READ: VOLT-OHM-MILLIAMMETER TEST INSTRUMENTS VOLT-OHM-MILLIAMMETER TEST LEADS Module 4 LIT 787742 Rev. B WHIRLPOOL CORPORATION does not assume

More information

PHY222 - Lab 7 RC Circuits: Charge Changing in Time Observing the way capacitors in RC circuits charge and discharge.

PHY222 - Lab 7 RC Circuits: Charge Changing in Time Observing the way capacitors in RC circuits charge and discharge. PHY222 Lab 7 RC Circuits: Charge Changing in Time Observing the way capacitors in RC circuits charge and discharge. Print Your Name Print Your Partners' Names You will return this handout to the instructor

More information

Circular Motion and Centripetal Force

Circular Motion and Centripetal Force [For International Campus Lab ONLY] Objective Measure the centripetal force with the radius, mass, and speed of a particle in uniform circular motion. Theory ----------------------------- Reference --------------------------

More information

Lab 5a: Magnetic Levitation (Week 1)

Lab 5a: Magnetic Levitation (Week 1) ME C134 / EE C128 Fall 2017 Lab 5a Lab 5a: Magnetic Levitation (Week 1) Magnetism, as you recall from physics class, is a powerful force that causes certain items to be attracted to refrigerators. Dave

More information

Training Guide. Coastal Environmental Systems, Inc.

Training Guide. Coastal Environmental Systems, Inc. WEATHERPAK TRx2 Coastal Environmental Systems, Inc. 820 First Avenue South Seattle, WA 98134 206.682.6048 800.488.8291 206.682.5658 Fax www.coastalenvironmental.com 11-16-2012 WEATHERPAK is the #1 Choice

More information

Digital Design through Pi

Digital Design through Pi 1 Digital Design through Pi G V V Sharma Contents 1 Display Control through Hardware 1 1.1 Components......... 1 1.2 Software Setup........ 1 1.3 Powering the Display.... 1 1.4 Controlling the Display...

More information

Circuit Analysis and Ohm s Law

Circuit Analysis and Ohm s Law Study Unit Circuit Analysis and Ohm s Law By Robert Cecci Circuit analysis is one of the fundamental jobs of an electrician or electronics technician With the knowledge of how voltage, current, and resistance

More information

OP-02 / OP-03 / OP-04

OP-02 / OP-03 / OP-04 FS-i Series Check Weighing Scales Option OP-02 / OP-03 / OP-04 WM+PD4001368 Contents 1. OP-02 BATTERY... 2 1-1. Using the OP-02 SLA Battery... 2 2. OP-03 RS-232C / RELAY OUTPUT... 4 2-1. Installation...

More information

In-System Serial Programming (ISSP) Guide

In-System Serial Programming (ISSP) Guide CY3207ISSP In-System Serial Programming (ISSP) Guide Doc. # 001-15301 Rev. *A Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com

More information

Observing Procedure for C11 GPS

Observing Procedure for C11 GPS Observing Procedure for C11 GPS By T. W. Fuller Preparation Customize observing list You can install a list of up to 25 custom objects in the telescope database ahead of time, so that you will have them

More information

FOREMAN ASSEMBLY / OWNER S MANUAL

FOREMAN ASSEMBLY / OWNER S MANUAL ATV PLOW MOUNT For HONDA FOREMAN ASSEMBLY / OWNER S MANUAL Part No: 15-1610 MAN0418 Rev. 00 OPERATING INSTRUCTIONS Congratulations! You ve just purchased the most durable plow component in the industry.

More information

INSTALLATION INSTRUCTIONS ATV Plow Blade Part Number: (50 ), (54 ), or (60 ) Application: All Terrain Vehicles

INSTALLATION INSTRUCTIONS ATV Plow Blade Part Number: (50 ), (54 ), or (60 ) Application: All Terrain Vehicles INSTALLATION INSTRUCTIONS ATV Plow Blade Part Number: 78950 (50 ), 78954 (54 ), or 78960 (60 ) Application: All Terrain Vehicles Your safety, and the safety of others, is very important. To help you make

More information

BEFORE USE... POINTS OF CAUTION COMPONENT IDENTIFICATION INSTRUCTION MANUAL MODEL R7K4DH-1-DAC32D R7K4DH-1-DAC32D

BEFORE USE... POINTS OF CAUTION COMPONENT IDENTIFICATION INSTRUCTION MANUAL MODEL R7K4DH-1-DAC32D R7K4DH-1-DAC32D INSTRUCTION MANUAL PNP DISCRETE INPUT & PNP TRANSISTOR OUTPUT MODULE, 6 points each (High-speed Link System, e-con connector) R7KDH--DACD MODEL R7KDH--DACD BEFORE USE... Thank you for choosing M-System.

More information

INSTALLATION INSTRUCTIONS ATV PLOW ACCESSORY Plow Mounting Kit:Warn PN Application:2002 and newer+ Suzuki Eiger 400

INSTALLATION INSTRUCTIONS ATV PLOW ACCESSORY Plow Mounting Kit:Warn PN Application:2002 and newer+ Suzuki Eiger 400 INSTALLATION INSTRUCTIONS ATV PLOW ACCESSORY Plow Mounting Kit:Warn PN 63840 Application:2002 and newer+ Suzuki Eiger 400 Your safety, and the safety of others, is very important. To help you make informed

More information

CHV Series Vector Control Inverter Options. Operating Instructions for Tension Control Card

CHV Series Vector Control Inverter Options. Operating Instructions for Tension Control Card CHV Series Vector Control Inverter Options Operating Instructions for Control Card 1. Model and Specifications 1.1 Model The model of tension card is CHV00ZL. CHV series inverter can conduct constant

More information

Visual Physics 218 Forces & Acceleration [Lab 3]

Visual Physics 218 Forces & Acceleration [Lab 3] In this experiment, you will be evaluating the vector nature of forces and Newton s 2 nd Law of Motion using a free-body diagram. You will accomplish this by performing experiments involving both static

More information

ph Probe ReallyEasyData com

ph Probe ReallyEasyData com ph Probe 9200001 Uses Whether you re monitoring ph for chemistry, physical science, life science, or earth science activity, this ph meter offers accurate readings in a convenient format. Use the RED ph

More information

Safety Precautions WARNING If critical situations that could lead to user s death or serious injury is assumed by mishandling of the product.

Safety Precautions WARNING If critical situations that could lead to user s death or serious injury is assumed by mishandling of the product. Safety Precautions Observe the following notices to ensure personal safety or to prevent accidents. To ensure that you use this product correctly, read this User s Manual thoroughly before use. Make sure

More information

QUANTUM CONCEPT. Swimming User s Manual

QUANTUM CONCEPT. Swimming User s Manual QUANTUM CONCEPT Swimming User s Manual 480.508.0 Version.4 Edition July 05 Documentation Updates Swiss Timing Ltd. reserves the right to make improvements in the products described in this documentation

More information

Calibration Routine. Store in HDD. Switch "Program Control" Ref 1/ Ref 2 Manual Automatic

Calibration Routine. Store in HDD. Switch Program Control Ref 1/ Ref 2 Manual Automatic 4.2 IMPLEMENTATION LABVIEW 4.2.1 LabVIEW features LabVIEW (short for Laboratory Virtual Instrument Engineering Workbench) originally released for the Apple Macintosh in 1986. It is a highly productive

More information

ASSEMBLY / OWNER S MANUAL

ASSEMBLY / OWNER S MANUAL ATV PLOW MOUNT For Yamaha ATVs ASSEMBLY / OWNER S MANUAL Part No: 15-5590 MAN0050 Rev. 01 OPERATING INSTRUCTIONS Congratulations! You ve just purchased the most durable plow component in the industry.

More information

FIELD SPECTROMETER QUICK-START GUIDE FOR FIELD DATA COLLECTION (LAST UPDATED 23MAR2011)

FIELD SPECTROMETER QUICK-START GUIDE FOR FIELD DATA COLLECTION (LAST UPDATED 23MAR2011) FIELD SPECTROMETER QUICK-START GUIDE FOR FIELD DATA COLLECTION (LAST UPDATED 23MAR2011) The ASD Inc FieldSpec Max spectrometer is a precision instrument designed for obtaining high spectral resolution

More information

POINTS OF CAUTION BEFORE USE...

POINTS OF CAUTION BEFORE USE... INSTRUCTION MANUAL NPN DISCRETE INPUT & NPN TRANSISTOR OUTPUT MODULE, 6 points each (-I/-II, e-con connector) MODEL BEFORE USE... Thank you for choosing M-System. Before use, check the contents of the

More information

WeatherHawk Weather Station Protocol

WeatherHawk Weather Station Protocol WeatherHawk Weather Station Protocol Purpose To log atmosphere data using a WeatherHawk TM weather station Overview A weather station is setup to measure and record atmospheric measurements at 15 minute

More information

Acid-Base Titration. Sample

Acid-Base Titration. Sample Acid-Base Titration Computer 7 A titration is a process used to determine the volume of a solution that is needed to react with a given amount of another substance. In this experiment, your goal is to

More information

hydrideicp Hydride Generation System

hydrideicp Hydride Generation System HG-MP2-4-A hydrideicp Generation System hydrideicp Hydride Generation System User Manual MP 2 hydrideicp Generation System Elemental Scientific Phone: 1.402.991.7800 Email: esi@icpms.com 1500 North 24th

More information

MLCC APPLICATION GUIDE

MLCC APPLICATION GUIDE MLCC APPLICATION GUIDE 1/11 No. Process Condition 1 Operating Condition (Storage) 1) The capacitor must be stored in an ambient temperature between 5 ~ 40 with a relative humidity of 20 ~ 70%. The products

More information

PTC04-DB-HALL02. Daughter Board for Melexis PTC devices. Features and Benefits. Applications. Ordering Information. Accessories. 1. Functional Diagram

PTC04-DB-HALL02. Daughter Board for Melexis PTC devices. Features and Benefits. Applications. Ordering Information. Accessories. 1. Functional Diagram PTC0-DB-HALL0 Features and Benefits PTC0 interface board for testing devices: 0 0 0 Applications Experimental tool for Lab and Prototyping Production Equipment for Serial Programming Ordering Information

More information

Assembly Programming through Arduino

Assembly Programming through Arduino 1 Assembly Programming through Arduino G V V Sharma Contents 1 Components 1 2 Seven Segment Display 1 2.1 Hardware Setup....... 1 2.2 Software Setup........ 2 2.3 Controlling the Display... 2 3 Display

More information

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide

SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide This page is intentionally left blank. SuperCELL Data Programmer and ACTiSys IR Programmer User s Guide The ACTiSys IR Programmer and SuperCELL

More information

PHOENIX CONTACT - 04/2016. Features

PHOENIX CONTACT - 04/2016. Features Signal conditioner Data sheet 100238_de_06 1 Description PHOENIX CONTACT - 04/2016 Features The MCR-C-UI-UI(-450)-DCI(-NC) 3-way isolation amplifier is used to electrically isolate and convert analog signals.

More information

HMS-5000 Manual. Product Name: HMS-5000 Hall Effect Measurement System with variable temperature from 80K to 350K. - Manual version: ver 5.

HMS-5000 Manual. Product Name: HMS-5000 Hall Effect Measurement System with variable temperature from 80K to 350K. - Manual version: ver 5. HMS-5000 Manual Product Name: HMS-5000 Hall Effect Measurement System with variable temperature from 80K to 350K - Manual version: ver 5.01- www.ecopia21.co.kr - Table of contents - 1. Hardware Installation

More information

WS-7047TWC Wireless 433 MHz Weather Station With Rainfall and Temperature. Instruction Manual

WS-7047TWC Wireless 433 MHz Weather Station With Rainfall and Temperature. Instruction Manual WS-7047TWC Wireless 433 MHz Weather Station With Rainfall and Temperature Instruction Manual TABLE OF CONTENTS Topic Page Inventory of Contents 2 Additional Equipment 2 Quick Setup 3 Detailed Setup Guide

More information

Exam Practice Problems (3 Point Questions)

Exam Practice Problems (3 Point Questions) Exam Practice Problems (3 Point Questions) Below are practice problems for the three point questions found on the exam. These questions come from past exams as well additional questions created by faculty.

More information

LIGHT TRACKER ACTIVITY

LIGHT TRACKER ACTIVITY LIGHT TRACKER ACTIVITY By Katrina Sweetland, updated 4/10/2017 This project is based on the instructable by Mathias Leroy http://www.instructables.com/id/solar-tracker-with-lego-and-arduino-dual-axis/

More information

In-System Serial Programming (ISSP) Guide

In-System Serial Programming (ISSP) Guide CY3207ISSP In-System Serial Programming (ISSP) Guide Spec. # 001-15301 Rev. ** Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com

More information

Conservation of Mechanical Energy Activity Purpose

Conservation of Mechanical Energy Activity Purpose Conservation of Mechanical Energy Activity Purpose During the lab, students will become familiar with solving a problem involving the conservation of potential and kinetic energy. A cart is attached to

More information

Quick Start Guide. The ieq45 GoTo German Equatorial Mount # 8000C

Quick Start Guide. The ieq45 GoTo German Equatorial Mount # 8000C Quick Start Guide The ieq45 GoTo German Equatorial Mount # 8000C PACKAGE CONTENTS Telescope Mount (with built-in GPS) 3.5 Vixen type dovetail saddle (installed on the mount) 8 Losmandy-D type dovetail

More information

RTAC104 AFM References in Package

RTAC104 AFM References in Package Radiant Technologies, Inc. 2835D Pan American Freeway NE Albuquerque, NM 87107 Tel: 505-842-8007 Fax: 505-842-0366 e-mail: radiant@ferrodevices.com www.ferrodevices.com RTAC104 AFM References in Package

More information

Electrical Connections

Electrical Connections Electrical Connections Developed and Published by AIMS Education Foundation This book contains materials developed by the AIMS Education Foundation. AIMS (Activities Integrating Mathematics and Science)

More information

PLANCK S CONSTANT IN THE LIGHT OF AN INCANDESCENT LAMP

PLANCK S CONSTANT IN THE LIGHT OF AN INCANDESCENT LAMP PLANCK S CONSTANT IN THE LIGHT OF AN INCANDESCENT LAMP In 1900 Planck introduced the hypothesis that light is emitted by matter in the form of quanta of energy hν. In 1905 Einstein extended this idea proposing

More information

For the electronic measurement of current: DC, AC, pulsed..., with galvanic separation between the primary and the secondary circuit.

For the electronic measurement of current: DC, AC, pulsed..., with galvanic separation between the primary and the secondary circuit. Current Transducer HO-NP series I P N = 4, 6, 12, 15 A Ref: HO 4-NP, HO 6-NP, HO 12-NP, HO 15-NP For the electronic measurement of current: DC, AC, pulsed..., with galvanic separation between the primary

More information

AIRBIO : AIRBONE DISINFECTION

AIRBIO : AIRBONE DISINFECTION AIRBIO instructions Introduction The AIRBIO/APABIO process enables an airborne disinfection of surfaces in rooms between 10 and 300 m3. The process is therefore based on two parts, the AIRBIO machine and

More information

Experiment C-10 Titration of a Strong Acid and a Strong Base

Experiment C-10 Titration of a Strong Acid and a Strong Base 1 Experiment C-10 Titration of a Strong Acid and a Strong Base Objectives To study the titration process. To follow changes in the ph during the titration process while adding a strong base to a strong

More information

In-System Serial Programming (ISSP) Guide

In-System Serial Programming (ISSP) Guide CY3207-ISSP In-System Serial Programming (ISSP) Guide Doc. # 001-15301 Rev. *E Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com

More information

User's Manual altimeter V1.1

User's Manual altimeter V1.1 User's Manual altimeter V1.1 The altimeter is completely autonomous. It can be installed on any model. It automatically detects the beginning of flights and does not record the period between two consecutive

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts In this chapter, you will... Learn about where charge comes from. Explore concepts of voltage and current. Discover the way circuits work. Find out about schematic diagrams. Build and test your first circuit.

More information

Lab Activity H4 It s Snow Big Deal

Lab Activity H4 It s Snow Big Deal Lab Activity H4 It s Snow Big Deal OUTCOMES After completing this lab activity, the student should be able to use computer-based data acquisition techniques to measure temperatures. draw appropriate conclusions

More information

ph electrode Instruction Manual For use with the RAH-210 & RPH-250

ph electrode Instruction Manual For use with the RAH-210 & RPH-250 ph electrode Instruction Manual For use with the RAH-210 & RPH-250 The information in this manual was current at the time of printing. The most current versions of all Hydro Instruments manuals can be

More information

VIBRATION METER Acceleration & Velocity Model : VB-8201HA

VIBRATION METER Acceleration & Velocity Model : VB-8201HA VIBRATION METER Acceleration & Velocity Model : VB-8201HA TABLE OF CONTENTS 1. FEATURES... 1 2. SPECIFICATIONS...2 3. FRONT PANEL DESCRIPTION...4 3-1 Display...4 3-2 BNC socket of meter...4 3-3 RMS/PEAK

More information

B Left-hand case side (x1) F

B Left-hand case side (x1) F MD693/ HD-1688 WOODEN RADIO-CONTROLLED GRANDFATHER CLOCK WITH WESTMINSTER CHIMES INSTRUCTIONS PLEASE READ ALL THE INSTRUCTIONS CAREFULLY BEFORE YOU SET YOUR CLOCK GOING AND ENSURE YOU KEEP HOLD OF THESE

More information

P300. Technical Manual I/Os, 240 solenoid drivers th Street, Davis, CA 95616, USA Tel: Fax:

P300. Technical Manual I/Os, 240 solenoid drivers th Street, Davis, CA 95616, USA Tel: Fax: 00+ I/Os, 0 solenoid drivers Technical Manual 0 th Street, Davis, CA, USA Tel: 0--00 Fax: 0--0 Email: sales@tern.com http://www.tern.com COPYRIHT, i-engine, A-Engine, R-Engine and ACTF are trademarks of

More information

LEE Project Room AH177

LEE Project Room AH177 A H 1 7 7 I N S T R U C T I O N S 1 LEE Project Room AH177 Instructions and Troubleshooting T a b l e o f C o n t e n t s 1. INSTRUCTIONS... 2 1.1 DISPLAY INSTRUCTOR LAPTOP ON ALL SCREENS... 2 1.2 DISPLAY

More information

AccuAligning TM Polar Scope for SmartEQ TM Portable German Equatorial GOTO Mount. Installation and User Manual. Product #3130

AccuAligning TM Polar Scope for SmartEQ TM Portable German Equatorial GOTO Mount. Installation and User Manual. Product #3130 AccuAligning TM Polar Scope for SmartEQ TM Portable German Equatorial GOTO Mount Installation and User Manual Product #3130 ioptron Corporation, 6E Gill Street, Woburn, MA 01801 www.ioptron.com ioptron

More information

WEATHERPAK MTR Training Guide

WEATHERPAK MTR Training Guide WEATHERPAK MTR Coastal Environmental Systems, Inc. 820 First Avenue South Seattle, WA 98134 206.682.6048 800.488.8291 206.682.5658 Fax www.coastalenvironmental.com 11-15-2012 WEATHERPAK is the #1 Choice

More information

PTC04-DB Daughter Board for Melexis PTC devices

PTC04-DB Daughter Board for Melexis PTC devices PTC0-DB-0 Features and Benefits PTC0 interface board for testing devices: MLX0 MLX0 MLX0 MLX0 MLX00 MLX0 MLX0 MLX0 Applications Experimental tool for Lab and Prototyping Production Equipment for Serial

More information

Lab Manual for ICEN 553/453 Cyber-Physical Systems Fall 2018

Lab Manual for ICEN 553/453 Cyber-Physical Systems Fall 2018 Lab Manual for ICEN 553/453 Cyber-Physical Systems Fall 2018 Prof. Dola Saha Assistant Professor Department of Electrical & Computer Engineering University at Albany, SUNY Chapter 1 Setup Headless Raspberry

More information

Evaluation copy. Ground Temperature Measurements. computer OBJECTIVES MATERIALS PRE-LAB QUESTIONS

Evaluation copy. Ground Temperature Measurements. computer OBJECTIVES MATERIALS PRE-LAB QUESTIONS Ground Temperature Measurements Computer P3 Throughout the daylight hours the sun heats up the air and the soil. Project 1 in this manual investigates the changes in air temperature during this process.

More information

Lab #15: Introduction to Computer Aided Design

Lab #15: Introduction to Computer Aided Design Lab #15: Introduction to Computer Aided Design Revision: 02 Nov 2016 Print Name: Section: GETTING FAMILIAR WITH YOUR BASYS3 DIGILAB BOARD. Problem 1: (26 points) Visually inspect the Digilab board, enter

More information