Build Instructions for TempBug: Internet-Connected Thermometer Step 1: Gather the parts

Size: px
Start display at page:

Download "Build Instructions for TempBug: Internet-Connected Thermometer Step 1: Gather the parts"

Transcription

1 Build Instructions for TempBug: Internet-Connected Thermometer Step 1: Gather the parts Take a look at the bill of materials for this project to see all the parts youʼll need and where you can get them. Itʼs just an Imp and Imp breakout board, a battery, a temperature sensor, and a couple of passive components. I put mine together for less than $50.

2 You'll need some tools and supplies, as well: 1. Soldering iron 2. Solder 3. A bit of foam tape or other thick, double-sided tape for securing the battery to the breakout board 4. Angle cutters / wire cutters 5. Wire strippers 6. A smart phone for using BlinkUp to put the Imp on your WiFi network 7. A computer to program the Imp All right! Let's get started! Step 2: Wire it up Take a look at this breadboard diagram to see how weʼll be wiring up the TempBug.

3 First, connect the battery clip to the breakout board. 1. If your battery clip has a connector on the end, cut it off. Strip about 1/8" off the end of each wire and twist the strands to keep them together. If you don't want long leads hanging off your TempBug, you'll want to cut the wire to about 2" long or a little less. 2. Secure your Electric Imp breakout board to your work surface and heat up your soldering iron.

4 3. One pad at a time, use the soldering iron to heat the "P+" and "P-" battery pads on the breakout board. For each pad, when it gets hot, flow a good-sized bead of solder onto the pad. Take care not to short the pads together. 4. Place the red lead from the battery clip against the bead of solder on the "P+" pad and heat the pad and wire together with the soldering iron. When the solder flows, hold the parts together and remove the iron. Let the solder cool, then let go. 5. Repeat previous step with black lead and "P-" pad. Refer to photos to see how this should be arranged. Note that you should follow the label on the board, not right vs. left, as your breakout board may have the pads on opposite sides. Connect the capacitor

5 When the Imp turns on its WiFi transmitter, it can draw a lot of current (up to 250 ma, during initial calibration) from your power supply. To keep this sudden current draw from "drooping" the power supply and browning out your TempBug, we've got a BIG CAPACITOR. We'll connect the capacitor in parallel with the battery, the battery will charge the capacitor to the same voltage as the battery, and if the Imp suddenly demands more current than the battery can dish out, the capacitor will pitch in to help out. 1. The leads on the capacitor go through the breakout board at "VIN" and "GND" which are next to each other along the bottom edge of the board. Note that the negative side of the capacitor is marked with a big stripe with a "-" sign in it, and should go to ground 2. One pad at a time, use the soldering iron to heat the wire and the pad, then flow some solder onto the joint and remove the iron. 3. When you're all secure, trim the excess from the capacitor leads with your angle cutters or wire cutters. Connect the resistor 1. The 100kΩ resistor can go either way around and is connected between pin9 and 3V3 on the Electric Imp breakout board. 2. Bend the wire leads to fit and push them through the holes marked "3V3" and "Pin9". 3. Just as you did with the capacitor leads, solder ONLY THE 3V3 SIDE to the breakout board. The thermistor needs to share the Pin9 pad with the resistor, so don't solder that side yet!

6 Connect the thermistor 1. Just like the resistor, the thermistor is a passive component and can go either way around. If you bought the same one as me, the wire ends come pre-stripped. Push one end through the Pin9 hole and the other through the hole marked "Pin8." 2. Now, solder the resistor and thermistor leads together through the Pin9 pad.

7 3. Lastly, solder the last thermistor lead into the Pin8 pad. All right, all wired up! Let's take a look at what you just built. Step 3: How's this thing work? The operating principle behind the TempBug is really simple. All we're doing here is making a resistive divider using a resistor and a thermistor, and measuring the voltage in the middle using an analog-to-digital converter in the Electric Imp. Wait, what's a thermistor? A thermistor is a temperature-dependent resistor. It has a specific resistance at room temperature, and its resistance varies in a known proportion with the temperature of the component. In our case, we've selected a NTC, or negative-temperature-coefficient thermistor; the resistance of the part will decrease as temperature increases. Got it, but what's the deal with the resistor? Together, the resistor and thermistor form a resistive divider; the two resistors, wired up in series (end-to-end) have an effective resistance equal to the sum of their individual resistances. This determines the amount of current that flows through them: V=I*R (Ohm's law), V=3.3V (from the Imp breakout board's 3.3V on-board power supply), and R = the 100kΩ + the thermistor's resistance at the current temperature. Now we know how much current is flowing through the circuit.

8 Going back to Ohm's Law, we know that the voltage across the thermistor = I*R, where I is the current through the divider (they're in series, so both components see the same current), and R is the current resistance of the thermistor. Therefore, if we can measure the voltage at Pin9, we can solve for the resistance of the thermistor. Given the thermistor's resistance, we can determine the temperature of the part. Hey, wait, the other side of the thermistor isn't connected to ground! Right you are. It's connected to Pin8. This is a sneaky trick we'll use to save the battery. Current flowing through the resistive divider drains the battery, so we'll only let the current flow when we want to measure the temperature. We do this by programming pin8 to be a digital output. When we set Pin8 high, the voltage drop across the divider is 0V, so no current flows. When we want to take a measurement, we drive Pin8 low and sink current from the divider through the Imp. How do we actually do the measuring? To measure the voltage across the thermistor, we set up Pin9 as an analog-to-digital converter, which allows us to take an accurate measurement of the analog voltage on the pin using the Imp. Check out the software in a few steps to see how that's done. Step 4: Power up! Ok, enough math. Let's get to the actual temperature-measuring part. Connect the battery To secure the battery to the breakout board, a little square of foam tape will do the trick. Cut a small piece off with a pair of scissors and stick the sticky side to the back of the breakout board. If you went ahead and got a spring clip to hold the battery (which makes battery changes easy), youʼll want to stick that to the square of foam tape. Otherwise, you can just stick the battery straight to the board; itʼs going to last a long time. Peel back the backing film, and stick the battery clip or battery on, making sure to keep it nice and square this stuff is sticky! Once you've got it stuck in place, go ahead and connect the battery clip. Check the jumper Make sure the jumper on your breakout board is set to connect the middle pin and the "BAT" pin. Check the photos if you're not sure. If your Imp doesn't power up when you click it into the socket, double-check the jumper.

9 Plug in the Imp Insert your Imp into the socket on the breakout board, and it should start to blink red or orange (unless you've connected it before on this network, in which case it will just connect again). Congrats! You're powered up and ready to connect your Imp with BlinkUp and program it. BlinkUp If you haven't already registered as an Electric Imp developer, you'll need to do that now. Head to ide.electricimp.com to sign up (it's free). You'll also need to download the Electric Imp app on your smart phone, which is also free just search for "Electric Imp." Log into the app with the same account credentials you used to register at ide.electricimp.com. Once you're logged in, add your wireless network to the list of networks in the Electric Imp app. If you're on ios, it will prompt you to allow it to use the network you're already on, and you'll just need to add the password yourself. To add a new network manually, select "other network" and type in your SSID and password. Check the "save this network" button! Once you've added the network, you're ready to configure the device with BlinkUp. Make sure the Imp is powered up. If it's powered up but stopped blinking, reset the power by "push-pushing" the card (push once to disconnect, count to 3, push again to reconnect) so you can be sure it's listening for the BlinkUp signal. Hold the screen of your phone against the top edge of the Imp and press "send BlinkUp" in the Electric Imp App. The screen on your phone will begin to blink quickly for about 10 to 20 seconds, then stop. The Imp should blink green once ("got it!"), then start to blink red/orange ("found the network, connecting to the Electric Imp server"). After a second or so, the Imp should be able to phone home to the Electric Imp server, and will start to blink green. You're connected. Excellent. Now it's time to program the Imp! Head to the next step. Step 5: Setting your Imp Firmware Point your browser to ide.electricimp.com again and log in. This takes you back to the IDE window. If you've connected this Imp breakout board before (you pro), it will pop back up in the IDE under the model it was last a part of. If this is a brand-new breakout board, it will appear in the IDE's left-hand nav panel under "New Devices", at the top of the panel.

10 You'll see a little number in this panel showing the number of new devices there waiting to be configured probably just one! Click the small triangle in "New Devices" to see the list of new devices. Again, if you've never configured this device before, it won't have a name, so it will default to a long, random-looking string of characters (this device's Device ID). Mouse over the name of the device and click the gear icon to open up the settings for the device. This is where you can name the device and assign it a model. Go ahead and name it whatever you like, and create a new model by typing a name for your new model in the model drop-down. When you hit "save changes", you'll be taken to the code window for this new model, and you'll see your new device is now listed under that model in the lefthand nav. A model has two parts: an agent and a device. The device firmware is simply the code that runs on the Imp itself. The agent is that device's partner a tiny server that runs in the Electric Imp Cloud. The device and agent can send information back and forth, and the agent can talk to the rest of the Internet and has its own URL. You get to write code for both of them.

11 ... Or you can use the code that's already written for you :) Head to GitHub, and notice that there are two files here one for the agent and one for the device. Accordingly, there are two windows for you in the IDE one will say "agent" and the other "device." Copy the correct code into each window. If you hit "Build and Run" now, you'll see the device read the temperature and then go to sleep, but the agent will have an error when it tries to log the data to Xively because you haven't added your Xively account yet. Let's do that next. If you did do this, and your device has gone to sleep for 15 minutes, you can disconnect and reconnect power (by simply pulling and re-inserting the jumper) to get the Imp to wake up again. Let's connect your new thermometer to Xively to log the data. Then we can come back and take a look at what makes the firmware work. Step 6: Connecting to Xively To connect your thermometer to Xively, you'll first need a Xively account. Head to and register if you haven't already (again, it's free). When you register, you'll be taken to a page that enthusiastically encourages you to create a new device. Go ahead and click the big plus button. Creating a new device is quite simple: name it, describe it, click the "Private Device" radio button (unless you want a public device!), and click the "add device" button. This will take you back to the dashboard for your new device, where there's some important info waiting for you.

12 Inside the dashboard for your newly created device, you'll find your API key and a "feed ID" for the feed you've just created. You need to add these parameters to the agent in order to get things working. Copy each from the channel dashboard and use them to fill in the appropriate lines at the top of your agent firmware. The agent is set up to create a temperature channel for you inside this feed, so you don't even need to do that. You can go ahead and hit "Build and Run" in the agent now, and

13 you're off to the races. After a few updates, you'll have a nice graph of the history of your datastream! Let's head back to the code editor and take a look at how the Imp is working this magic. Step 7: Digging into the Code Imp firmware is written in an object-oriented language called Squirrel, which looks and feels a lot like JavaScript. Squirrel runs in a virtual machine on top of the impos inside the Imp, so runtime errors won't knock your device offline, and you have access to a lot of nice OS-based features, like buffered serial input and easy one-line APIs to set GPIOs or communicate with peripheral devices. To take a look at all the things you can do in your Imp firmware, check out the Electric Imp API reference and Electric Imp getting started page. To see which pins can do what, check out the Imp pin mux. Our code here is pretty simple. Here's our basic operating procedure: Set some constants Define a class for our temperature sensor Instantiate our class to create a temperature sensor object Read the temperature sensor Send the data point to the agent Schedule ourselves to wake up in a bit and do it all again The constants at the top of the code look a little ominous, but they're simple. These are the parameters for your thermistor you can find them on the datasheet for the thermistor you're using. If you're using the thermistor I linked to earlier, you can even keep the parameters already set here. The next functional block is a class definition this is basically a set of instructions for how to do various important things with a thermistor, like read the temperature. This comes straight from GitHub it's a nice, modular piece of code so that it can easily be reused. All thatʼs left is to write our actual application logic! Runtime actually starts at the bottom of the file. First, we configure the two pins we're using. Remember from when we built the device one of the pins is an enable pin, which will allow current to flow through the

14 thermistor when it is set low. The other pin is our analog input pin, which we'll use to read the voltage across the thermistor. // Configure Pins // pin 8 is driven high to turn off temp monitor (saves power) or low t o read therm_en_l <- hardware.pin8; therm_en_l.configure(digital_out); therm_en_l.write(1); // pin 9 is the middle of the voltage divider formed by the NTC - read the analog voltage to determine temperature temp_sns <- hardware.pin9; Next, we call on our class definition from earlier to create a thermistor object. This object takes in the constants we set earlier, and has methods that allow us to read the temperature in Celsius or Fahrenheit. // instantiate our thermistor class mythermistor <- thermistor(temp_sns, b_therm, t0_therm, r_therm, 10, fa lse); Finally, weʼre down to where the magic happens we enable the sensor, take a reading, send it to the agent, and disable the sensor again to save battery. // enable the temperature sensor therm_en_l.write(0); imp.sleep(0.001); local id = hardware.getdeviceid(); local datapoint = { } "id" : id, "temp" : format("%.2f",mythermistor.read_f()) agent.send("data",datapoint); therm_en_l.write(1); And lastly, schedule a wakeup in fifteen minutes. We'll go to deep sleep until then, saving the battery: //Sleep for 15 minutes and 1 second, minus the time past the 0:15 //so we wake up near each 15 minute mark (prevents drifting on slow DHC P) imp.wakeup(3, function() {

15 }); server.sleepfor(1 + 15*60 - (time() % (15*60))); // full firmware is reloaded and run from the top on each wake cycle That's the device firmware let's take a look at the agent. You've already seen part of the agent we set the Xively API Key and Feed ID at the top of the agent firmware earlier. Below that, we have more class definitions three of them. Just like the class definition that gave instructions for working with a thermistor, these class definitions give instructions for sending and receiving data from Xively over HTTP. Below our Xively class definition is a really interesting bit of code this is the hook that the agent uses to receive new temperature data from the device. This is done by registering an agent "callback" with agent.on. This says, "when the device sends you an event called ʻtemp,ʼ call the following function with the data marked with that tag." Looking back at line 131 of the device firmware, we see that we sent data marked "temp" with a function called "agent.send". This is where that data went! device.on("data", function(datapoint) { }); posttoxively(datapoint.temp, datapoint.id); Lastly, we see the agent do two things when it first starts running. The first: it sends a log message letting us know that it started and is ready to get data. Second, it instantiates two of the Xively objects we defined earlier, letting us use the methods of those classes to send data to Xively as it comes in. The agent doesn't restart or sleep; it starts the first time the device boots with this model, and continues to run forever, handling each new data point when it comes in by calling the "device.on" callback. It's the device's brain in the Cloud! That's the firmware! Enjoy your new Internet-connected thermometer.

AR1100 Resistive Touch Screen Controller Guide

AR1100 Resistive Touch Screen Controller Guide AR1100 Resistive Touch Screen Controller Guide Created by lady ada Last updated on 2015-06-30 01:40:06 PM EDT Guide Contents Guide Contents Overview Calibrating the AR1100 Download and Install AR1100 Configuration

More information

Configuring Your Network s Security

Configuring Your Network s Security Configuring Your Network s Security Security is an important issue when using a wireless home network. Because radio waves are used to transfer information between your networked computers, it's possible

More information

NOQ_NQ-9121 Z-Wave Data Logger for Gas Meters Firmware Version : 2.55

NOQ_NQ-9121 Z-Wave Data Logger for Gas Meters Firmware Version : 2.55 NOQ_NQ-9121 Z-Wave Data Logger for Gas Meters Firmware Version : 2.55 Quick Start S This device is a Z-Wave Sensor. Inclusion and Exclusion are confirmed by triple clicking the Z-Wave button on the device.

More information

ILISC515-A Shift Interlock (Manual Lift Door) 2015 Ford Transit, 3.7L and 3.5L

ILISC515-A Shift Interlock (Manual Lift Door) 2015 Ford Transit, 3.7L and 3.5L An ISO 9001:2008 Registered Company ILISC515-A Shift Interlock (Manual Lift Door) 2015 Ford Transit, 3.7L and 3.5L Introduction The ILISC515-A is a microprocessor driven system for controlling wheelchair

More information

Building A Computer: A Beginners Guide

Building A Computer: A Beginners Guide Building A Computer: A Beginners Guide Mr. Marty Brandl The following was written to help an individual setup a Pentium 133 system using an ASUS P/I- P55T2P4 motherboard. The tutorial includes the installation

More information

* DISCLAIMER: Contents. How to Use This Guide: COMMERCIAL INSTALL GUIDE 2

* DISCLAIMER: Contents. How to Use This Guide: COMMERCIAL INSTALL GUIDE 2 COMMERCIAL INSTALL GUIDE 2 Contents How to Use This Guide: The first section of this guide is designed to assist you with the installation of your DECK Monitoring hardware. The revenue grade meter and

More information

LED Wiring and Connections

LED Wiring and Connections LED Wiring and Connections A Handbook of How-to Manuals 2009 usledsupply. All Rights Reserved. Index These step by step how to manuals will give you the foundation necessary to use your new LED lights.

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

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

Online Monitoring User Guide

Online Monitoring User Guide High Resolution Temperature Sensing Strip Online Monitoring User Guide 888.637.3282 www.nerdata.com Page 1 of 26 Contents The Aurora Online Monitoring System... 3 1. Creating an Account on the Aurora Online

More information

HYDRA HV OPERATION MANUAL. 2.0 Making Connections on your HYDRA speed control. Rosin core electrical solder

HYDRA HV OPERATION MANUAL. 2.0 Making Connections on your HYDRA speed control. Rosin core electrical solder HYDRA HV OPERATION MANUAL Starting Power Safe power on arming program helps prevent motor from accidentally turning on. Always use extreme care with high power systems. Auto shut down when signal is lost

More information

N300 WiFi Range Extender

N300 WiFi Range Extender Model EX2700 User Manual July 2014 202-11395-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device, locate the serial number on

More information

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples Networking General networking Networking overview A network is a collection of devices such as computers, printers, Ethernet hubs, wireless access points, and routers connected together for communication

More information

The LimitlessLED Wifi Bridge 4.0 is compatible with RGBW(new), RGB(old), and Dual White(current) LimitlessLED lightbulbs.

The LimitlessLED Wifi Bridge 4.0 is compatible with RGBW(new), RGB(old), and Dual White(current) LimitlessLED lightbulbs. www.limitlessled.com Wifi Bridge Receiver 4.0 User Guide The LimitlessLED Wifi Bridge 4.0 is compatible with RGBW(new), RGB(old), and Dual White(current) LimitlessLED lightbulbs. User Guide last updated

More information

The $25 Son of a cheap timer This is not suitable for a beginner. You must have soldering skills in order to build this kit.

The $25 Son of a cheap timer This is not suitable for a beginner. You must have soldering skills in order to build this kit. The $25 Son of a cheap timer This is not suitable for a beginner. You must have soldering skills in order to build this kit. Micro Wizard has been manufacturing Pinewood Derby timers for over 10 years.

More information

Innovative Electronics for a Changing World INDEX

Innovative Electronics for a Changing World INDEX Innovative Electronics for a Changing World INDEX 1. SYSTEM DESCRIPTION 2. BOARD CONNECTIONS terminals and indicators 3. CONNECTION DIAGRAM 4. START UP GUIDE and passwords 5. HOME PAGE 6. STATUS PAGE 7.

More information

MANUAL FOR RX700 LR and NR

MANUAL FOR RX700 LR and NR MANUAL FOR RX700 LR and NR 2013, November 11 Revision/ updates Date, updates, and person Revision 1.2 03-12-2013, By Patrick M Affected pages, ETC ALL Content Revision/ updates... 1 Preface... 2 Technical

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

How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers

How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers USB to router s serial port How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers by Neo at RouterTech.Org Introduction Routers based on the AR7RD/AR7WRD

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

Adafruit MCP9808 Precision I2C Temperature Sensor Guide

Adafruit MCP9808 Precision I2C Temperature Sensor Guide Adafruit MCP9808 Precision I2C Temperature Sensor Guide Created by lady ada Last updated on 2014-04-22 03:01:18 PM EDT Guide Contents Guide Contents Overview Pinouts Power Pins I2C Data Pins Optional Pins

More information

Introduction to Open Atrium s workflow

Introduction to Open Atrium s workflow Okay welcome everybody! Thanks for attending the webinar today, my name is Mike Potter and we're going to be doing a demonstration today of some really exciting new features in open atrium 2 for handling

More information

Installer guide. Release 2.2

Installer guide. Release 2.2 Installer guide Release 2.2 Important safety notice h r j n l s The following safety regulations must be observed at all times. Failure to observe precautions could result in severe injury or death. jj

More information

How to setup EW-7438RPn with a Windows computer to extend an existing Wi-Fi network

How to setup EW-7438RPn with a Windows computer to extend an existing Wi-Fi network 2 How to setup EW-7438RPn with a Windows computer to extend an existing Wi-Fi network Note: 1. This instruction use pictures from EW-7438RPn firmware v1.13. 2. If you need to restore to the default settings,

More information

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL

RN-WIFLY-EVAL-UM. WiFly Evaluation Kit. 2012 Roving Networks. All rights reserved. RN-WIFLY-EVAL-UM Version 1.32r 10/9/2012 USER MANUAL WiFly Evaluation Kit 2012 Roving Networks. All rights reserved. Version 1.32r 10/9/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks evaluation kits,

More information

User Manual. Updated for igrill 2.7.1 and ios 7

User Manual. Updated for igrill 2.7.1 and ios 7 User Manual Updated for igrill 2.7.1 and ios 7 Table of Contents 1. Getting Started... 3 2. Quick Start Instructions... 4 3. igrill Instructions... 5 3.1 Batteries... 5 3.2 Probes... 5 3.3 Fahrenheit or

More information

Tutorials Drawing a 555 timer circuit

Tutorials Drawing a 555 timer circuit Step 1 of 10: Introduction This tutorial shows you how to make an electronic circuit using Livewire and PCB Wizard 3. You should follow this tutorial to learn the basic skills you will need to use Livewire

More information

DS2438EVKIT+ Smart Battery Monitor Evaluation Kit

DS2438EVKIT+ Smart Battery Monitor Evaluation Kit 19-4829; Rev 1; 8/09 www.maxim-ic.com DS2438EVKIT+ Smart Battery Monitor Evaluation Kit FEATURES Demonstrates the Capabilities of the DS2438 Smart Battery Monitor, Including: Temperature Measurement Voltage

More information

WAMLocal. Wireless Asset Monitoring - Local Food Safety Software. Software Installation and User Guide BA/WAM-L-F

WAMLocal. Wireless Asset Monitoring - Local Food Safety Software. Software Installation and User Guide BA/WAM-L-F Wireless Asset Monitoring - Local Food Safety Software BA/WAM-L-F Software Installation and User Guide System Overview The BAPI Wireless Asset Monitoring Local (WAM Local) Software receives temperature

More information

RC2200DK Demonstration Kit User Manual

RC2200DK Demonstration Kit User Manual Demonstration Kit User Manual Table of contents TABLE OF CONTENTS... 1 QUICK INTRODUCTION... 2 INTRODUCTION... 3 DEMONSTRATION BOARD... 4 POWER SUPPLY SECTION... 5 RS-232 INTERFACE... 6 CONNECTORS... 7

More information

ipdatatel Wi-Fi BAT Installation and Configuration Guide

ipdatatel Wi-Fi BAT Installation and Configuration Guide ipdatatel Wi-Fi BAT Installation and Configuration Guide This guide is for customers who want install the ipdatatel equipment before their programming appointment. This guide covers installing the IPD-Wifi-BAT

More information

Time needed: ~3h for lid replacement only. Add 1h for operation harness in lid and ~2h more for installing drive unit and cable harness in trunk.

Time needed: ~3h for lid replacement only. Add 1h for operation harness in lid and ~2h more for installing drive unit and cable harness in trunk. DIY for replacing trunk lid and/or retrofitting electrical operation of trunk lid. This document is meant to be a support and give advice on the procedure but I will take no responsibility for any damage

More information

Martin County Amateur Radio Association. Nightfire Kits 1 LED Torch Kit 270016. Contents. Description

Martin County Amateur Radio Association. Nightfire Kits 1 LED Torch Kit 270016. Contents. Description Nightfire Kits 1 LED Torch Kit 270016 1 Contents Nightfire Kits LED Torch Kit 270016... 1 Description... 1 Safety and Assembly of the kit... 6 Required and Useful Tools... 7 Assembly... 8 Checkout and

More information

User Manual Network connection and Mobics Dashboard (MIS) software for Dryer Controller M720

User Manual Network connection and Mobics Dashboard (MIS) software for Dryer Controller M720 User Manual Network connection and Mobics Dashboard (MIS) software for Dryer Controller Manual version : v1.00 Networking and MIS Manual Dryer controller Page 1 of 16 Document history Preliminary version

More information

BATTERY MANAGEMENT SYSTEM

BATTERY MANAGEMENT SYSTEM BATTERY MANAGEMENT SYSTEM User s manual Revision 1 In this user s manual you will find a list of characteristics, setup and installation steps and recommendations for the EMUS Battery Management System.

More information

mysensors mysensors Wireless Sensors and Ethernet Gateway Quick Start Guide Information to Users Inside the Box mysensors Ethernet Gateway Quick Start

mysensors mysensors Wireless Sensors and Ethernet Gateway Quick Start Guide Information to Users Inside the Box mysensors Ethernet Gateway Quick Start mysensors Information to Users mysensors Wireless Sensors and Ethernet Gateway Quick Start Guide This equipment has been tested and found to comply with the limits for a Class B digital devices, pursuant

More information

Digicom Remote Control for the SRT

Digicom Remote Control for the SRT Digicom Remote Control for the SRT To operate the SRT remotely, use Remote Desktop; this is available free for Linux, Mac OS-X (from Microsoft), and is included with Windows XP and later. As RD uses a

More information

Nighthawk AC1900 WiF Range Extender

Nighthawk AC1900 WiF Range Extender Nighthawk AC1900 WiF Range Extender Model EX7000 User Manual December 2014 202-11469-01 350 East Plumeria Drive San Jose, CA 95134 USA Nighthawk AC1900 WiF Range Extender Support Thank you for selecting

More information

Vehicle Monitoring Quick Reference Guide

Vehicle Monitoring Quick Reference Guide Vehicle Monitoring Quick Reference Guide Powered by Delphi Welcome You re about to experience a powerful device that will deliver a new level of convenience and peace of mind with your vehicle. When combined

More information

AXE114S BINARY CLOCK. revolution Revolution Education Ltd. Email: info@rev-ed.co.uk Web: www.rev-ed.co.uk Version 1.1 12/09/08 AXE114.PMD.

AXE114S BINARY CLOCK. revolution Revolution Education Ltd. Email: info@rev-ed.co.uk Web: www.rev-ed.co.uk Version 1.1 12/09/08 AXE114.PMD. AXE114S BINARY CLOCK Features: The PICAXE binary clock kit tells the time by lighting up blue LEDs in a binary pattern. This is a useful tool for teaching students binary code or simply just confusing/

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

Cell Phone Charging Purse

Cell Phone Charging Purse Cell Phone Charging Purse Created by Becky Stern Last updated on 2015-02-20 01:00:16 PM EST Guide Contents Guide Contents Overview Prepare USB and Power Supply Create a Charging Shelf Install Coil in Bag

More information

step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely.

step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely. step 1 Unpack the lunchbox And check whether you have got all the components~ If you have questions please contact us at: info@unitunlikely.com This part is called the PCB (printed circuit board). All

More information

Configuring NXT Hardware with Mercury Inside into Doors.NET TM Application Note

Configuring NXT Hardware with Mercury Inside into Doors.NET TM Application Note 1.0 Installing the Mercury SCP Gateway The MSC/SCP gateway must be installed to interface with Mercury hardware. This gateway must be chosen during the installation of the software, or it can be added

More information

Troubleshooting Guide

Troubleshooting Guide Sprint Mobile Hotspot MiFi TM 2200 by Novatel Wireless Troubleshooting Guide If you are experiencing any issues with your MiFi 2200, please complete or validate the following before reviewing the rest

More information

Soldering is easy. here's how to do it. Andie Nordgren (Comics adaptation) Jeff Keyzer. by: Mitch Altman (soldering wisdom) (Layout and editing)

Soldering is easy. here's how to do it. Andie Nordgren (Comics adaptation) Jeff Keyzer. by: Mitch Altman (soldering wisdom) (Layout and editing) Soldering is easy here's how to do it by: Mitch Altman (soldering wisdom) Andie Nordgren (Comics adaptation) Jeff Keyzer (Layout and editing) Download this comic book and share it with your friends! Distribute

More information

RC Camera Control. User Guide v1.2. 10/20/2012

RC Camera Control. User Guide v1.2. 10/20/2012 RC Camera Control User Guide v1.2 10/20/2012 kristaps_r@rcgroups INTRODUCTION RC Camera Control board (RCCC) is multifunctional control board designed to for aerial photography or First Person Video flying.

More information

N300 WiFi Range Extender WN2000RPT User Manual

N300 WiFi Range Extender WN2000RPT User Manual N300 WiFi Range Extender WN2000RPT User Manual December 2013 202-11333-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device,

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

Seagate Business Storage 8-bay Rackmount NAS Reviewer s Guide

Seagate Business Storage 8-bay Rackmount NAS Reviewer s Guide Seagate Business Storage 8-bay Rackmount NAS Reviewer s Guide Seagate Business Storage 8-bay Rackmount NAS Reviewer s Guide/page 2 Purpose of this guide Experience the most common use cases for the product,

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

WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT

WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT WHO ANSWERED FIRST? FIND OUT WITH THIS QUIZ BUZZER KIT BUILD INSTRUCTIONS Before you put any components in the board or pick up the soldering iron, just take a look at the Printed Circuit Board (PCB).

More information

N600 WiFi USB Adapter

N600 WiFi USB Adapter Model WNDA3100v3 User Manual December 2014 202-11470-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device, locate the serial

More information

P-2612HNU-Fx. 802.11n ADSL2+ VoIP IAD DEFAULT LOGIN DETAILS. Firmware V3.00 Edition 1, 1/2010. Password: 1234 User Name: admin Password: 1234

P-2612HNU-Fx. 802.11n ADSL2+ VoIP IAD DEFAULT LOGIN DETAILS. Firmware V3.00 Edition 1, 1/2010. Password: 1234 User Name: admin Password: 1234 P-2612HNU-Fx 802.11n ADSL2+ VoIP IAD Firmware V3.00 Edition 1, 1/2010 DEFAULT LOGIN DETAILS IP Address: User Login: Administrator Login: http://192.168.1.1 User Name: user Password: 1234 User Name: admin

More information

Lab 2: Resistance, Current, and Voltage

Lab 2: Resistance, Current, and Voltage 2 Lab 2: Resistance, Current, and Voltage I. Before you come to la.. A. Read the following chapters from the text (Giancoli): 1. Chapter 25, sections 1, 2, 3, 5 2. Chapter 26, sections 1, 2, 3 B. Read

More information

A REST API for Arduino & the CC3000 WiFi Chip

A REST API for Arduino & the CC3000 WiFi Chip A REST API for Arduino & the CC3000 WiFi Chip Created by Marc-Olivier Schwartz Last updated on 2014-04-22 03:01:12 PM EDT Guide Contents Guide Contents Overview Hardware configuration Installing the library

More information

LET S GO. Get your Ultra Broadband ready Business gateway up and running

LET S GO. Get your Ultra Broadband ready Business gateway up and running LET S GO Get your Ultra Broadband ready Business gateway up and running CONTENTS BUSINESS GATEWAY ULTRA BROADBAND READY 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Equipment Check 2 Getting Started 3 Setting Up

More information

Designing VM2 Application Boards

Designing VM2 Application Boards Designing VM2 Application Boards This document lists some things to consider when designing a custom application board for the VM2 embedded controller. It is intended to complement the VM2 Datasheet. A

More information

The Social Accelerator Setup Guide

The Social Accelerator Setup Guide The Social Accelerator Setup Guide Welcome! Welcome to the Social Accelerator setup guide. This guide covers 2 ways to setup SA. Most likely, you will want to use the easy setup wizard. In that case, you

More information

AC1200 WiFi Range Extender

AC1200 WiFi Range Extender Model EX6200 User Manual February 2014 202-11298-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device, locate the serial number

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

Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection.

Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection. Quick Start Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection. This document will help you understand your Mobile WiFi so you can start using

More information

Configuring Your Network s Security

Configuring Your Network s Security Configuring Your Network s Security Security is an important issue when using a wireless home network. Because radio waves are used to transfer information between your networked computers, it's possible

More information

CM500 High Speed Cable Modem User Manual

CM500 High Speed Cable Modem User Manual User Manual February 2015 202-11472-04 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device, locate the serial number on the label

More information

CareSentinel Set Up Guide for Android Devices

CareSentinel Set Up Guide for Android Devices CareSentinel Set Up Guide for Android Devices Compatible Devices: Only devices running Android 4.3 or newer support Bluetooth Smart. Any smart phone or tablet running an Android operating system older

More information

PRESTASHOP VTIGER CRM CONNECTOR

PRESTASHOP VTIGER CRM CONNECTOR PRESTASHOP VTIGER CRM CONNECTOR Page 1 / 14 Vtiger CRM - Prestashop Connector For PRESTASHOP version 1.4.x and 1.5.x For vtiger CRM version 5.1, 5.2.0, 5.2.1, 5.3 and 5.4 Introduction As an e-shop manager,

More information

Analog control unit for mobile robots

Analog control unit for mobile robots Analog control unit for mobile robots Soldering kit for experimentation For Fischertechnik robots and others Most diverse functions Requires no programming Patented sensor technology Summary We are pleased

More information

Monnit Wi-Fi Sensors. Quick Start Guide

Monnit Wi-Fi Sensors. Quick Start Guide Monnit Wi-Fi Sensors Quick Start Guide Inside the Box You should find the following items in the box: Monnit Wi-Fi (MoWi ) Sensors 2 x AA Batteries for Each MoWi Sensor Quick Start Guide Note: A MoWi USB

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

DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD

DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD DKWF121 WF121-A 802.11 B/G/N MODULE EVALUATION BOARD PRELIMINARY DATA SHEET Wednesday, 16 May 2012 Version 0.5 Copyright 2000-2012 Bluegiga Technologies All rights reserved. Bluegiga Technologies assumes

More information

SVC400P/SVC800P. 4/8 Camera Live Tracking Vehicle DVR Installation Manual. Version 1.0

SVC400P/SVC800P. 4/8 Camera Live Tracking Vehicle DVR Installation Manual. Version 1.0 SVC400P/SVC800P 4/8 Camera Live Tracking Vehicle DVR Installation Manual Version 1.0 1. MAIN FEATURES... 2 2. PRODUCT OVERVIEW... 2 3. DIMENSIONS... 4 4. PACKAGE CONTENTS... 5 5. MOUNTING AND ENVORNMENTAL

More information

Adafruit SHT31-D Temperature & Humidity Sensor Breakout

Adafruit SHT31-D Temperature & Humidity Sensor Breakout Adafruit SHT31-D Temperature & Humidity Sensor Breakout Created by lady ada Last updated on 2016-06-23 10:13:40 PM EDT Guide Contents Guide Contents Overview Pinouts Power Pins: I2C Logic pins: Other Pins:

More information

Environmental Monitoring with Sensors: Hands-on Exercise

Environmental Monitoring with Sensors: Hands-on Exercise Environmental Monitoring with Sensors: Hands-on Exercise Now that you ve seen a few types of sensors, along with some circuits that can be developed to condition their responses, let s spend a bit of time

More information

B890 4G LTE Smart Hub Getting Started Guide

B890 4G LTE Smart Hub Getting Started Guide B890 4G LTE Smart Hub Getting Started Guide HUAWEI TECHNOLOGIES CO., LTD. Thank You for Purchasing the B890 4G LTE Smart Hub! Before You Begin What s in the Box : 1. B890 4G LTE Smart Hub 2. Power adapter

More information

AC750 WiFi Range Extender

AC750 WiFi Range Extender Model EX6100 User Manual April 2014 202-11307-03 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for selecting NETGEAR products. After installing your device, locate the serial number

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

mysensors mysensors Wireless Sensors and and Cellular Gateway Quick Start Guide Information to Users Inside the Box

mysensors mysensors Wireless Sensors and and Cellular Gateway Quick Start Guide Information to Users Inside the Box mysensors mysensors Wireless Sensors and and Cellular Gateway Quick Start Guide Information to Users The mysensors wireless products referenced in this Quick Start Guide have been tested to comply with

More information

UPiS - Uninterruptible Power intelligent Supply

UPiS - Uninterruptible Power intelligent Supply UPiS - Uninterruptible Power intelligent Supply www.pimodules.com Introduction The UPiS is an Advanced Powering add-on Module for the RaspberryPi that adds a wealth of additional features to the powering

More information

Mobile credit & debit card acceptance for your Smart Phone or Tablet. MobilePAY Shuttle

Mobile credit & debit card acceptance for your Smart Phone or Tablet. MobilePAY Shuttle Mobile credit & debit card acceptance for your Smart Phone or Tablet MobilePAY Shuttle User Information Record your Merchant Account and other useful information here. From time to time, you may need quick

More information

P-870HN-51b. 802.11n VDSL2 4-port Gateway DEFAULT LOGIN DETAILS. Firmware v1.00 Edition 1, 9/2009. IP Address: http://192.168.1.1.

P-870HN-51b. 802.11n VDSL2 4-port Gateway DEFAULT LOGIN DETAILS. Firmware v1.00 Edition 1, 9/2009. IP Address: http://192.168.1.1. P-870HN-51b 802.11n VDSL2 4-port Gateway Firmware v1.00 Edition 1, 9/2009 DEFAULT LOGIN DETAILS IP Address: http://192.168.1.1 Username: admin Password: 1234 www.zyxel.com Copyright 2009 ZyXEL Communications

More information

10/2011 - English Edition 1. Quick Start Guide. NWA1100N-CE CloudEnabled Business N Wireless Access Point

10/2011 - English Edition 1. Quick Start Guide. NWA1100N-CE CloudEnabled Business N Wireless Access Point 10/2011 - English Edition 1 Quick Start Guide NWA1100N-CE CloudEnabled Business N Wireless Access Point Package Contents - 1 x ZyXEL NWA1100N-CE Access Point - 2 x Detachable Antennas - 1 x Power Adapter

More information

Lab - Building an Internet of Things Application Hands-On Lab

Lab - Building an Internet of Things Application Hands-On Lab Lab - Building an Internet of Things Application Hands-On Lab Table of contents 1. Creating a Bluemix Application... 3 2. Create and add an Internet of Things Service... 4 2.Wire the connected device s

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

Pogo> User Guide. for iphone, ipad and ipod touch

Pogo> User Guide. for iphone, ipad and ipod touch Pogo> User Guide for iphone, ipad and ipod touch Introduction to Pogo> This document provides detailed information on how best to use the Pogo> application to benefit your business. The intention is to

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS Build a emperature Sensor Project A sensor is a device that measures a physical quantity and converts it into an electrical signal. Some sensors measure physical properties directly, while other sensors

More information

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Inspiron 13. Service Manual. 7000 Series. Computer Model: Inspiron 13 7348 Regulatory Model: P57G Regulatory Type: P57G001

Inspiron 13. Service Manual. 7000 Series. Computer Model: Inspiron 13 7348 Regulatory Model: P57G Regulatory Type: P57G001 Inspiron 13 7000 Series Service Manual Computer Model: Inspiron 13 7348 Regulatory Model: P57G Regulatory Type: P57G001 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps

More information

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family

Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family Renesas Capacitive Touch Lab R8C/36T-A Family Description: This lab will cover the Renesas Touch Solution for embedded capacitive touch systems. This lab will demonstrate how to setup and run a simple

More information

Seagate NAS OS 4 Reviewers Guide: NAS / NAS Pro / Business Storage Rackmounts

Seagate NAS OS 4 Reviewers Guide: NAS / NAS Pro / Business Storage Rackmounts Seagate NAS OS 4 Reviewers Guide: NAS / NAS Pro / Business Storage Rackmounts Seagate NAS OS 4 Reviewers Guide 2 Purpose of this guide Experience the most common use cases for the product, learn about

More information

Getting Started... 1. What s included... 1. Setting up Fitbit One on a computer... 2. Mac & PC Requirements... 2

Getting Started... 1. What s included... 1. Setting up Fitbit One on a computer... 2. Mac & PC Requirements... 2 User Manual Table of Contents Getting Started... 1 What s included... 1 Setting up Fitbit One on a computer... 2 Mac & PC Requirements... 2 Installing Fitbit Connect on a computer... 2 Installing Fitbit

More information

Getting Started Guide with WIZ550web

Getting Started Guide with WIZ550web 1/21 WIZ550web is an embedded Web server module based on WIZnet s W5500 hardwired TCP/IP chip, Users can control & monitor the 16-configurable digital I/O and 4-ADC inputs on module via web pages. WIZ550web

More information

GT3B Hack Kit Install Instructions Written By Austin Hutchison

GT3B Hack Kit Install Instructions Written By Austin Hutchison GT3B Hack Kit Install Instructions Written By Austin Hutchison Step 1: Remove 4 screws located on top of the radio. 1 Step 2: There are small plastic latches that also hold the top in place. The easiest

More information

Dynamax Inc Copyright 2012-13

Dynamax Inc Copyright 2012-13 SAPIP Tester Cable TEST Operating Guide Troubleshoot SapIP with signal issues while in the Field or the Lab Troubles shoot cables with basic VOM tests. Section One Low Voltage SAPIP Tester - Heater Supply

More information

Hello Modem. Today I would like

Hello Modem. Today I would like Quick Setup Guide Hello Modem. Today I would like to Start from scratch 1 Plug Modem in 3 Connect a computer to Modem 7 Learn how to view Modem settings 21 Change my wireless network name 22 Change my

More information

SwannEye HD Security Camera Wi-Fi Connections Quick Setup Guide. Welcome! Lets get started.

SwannEye HD Security Camera Wi-Fi Connections Quick Setup Guide. Welcome! Lets get started. EN SwannEye HD Security Camera Wi-Fi Connections Quick Setup Guide Welcome! Lets get started. 1 1 Introduction 1 2 3 4 Congratulations on your purchase of this SwannEye HD Wi-Fi Security Camera from Swann!

More information

FAQ for Eee Pad TF201

FAQ for Eee Pad TF201 FAQ for Eee Pad TF201 Managing files... 2 How do I access my data stored in microsd, SD card and USB device?... 2 How do I move the selected file to another folder?... 2 How do I copy and paste the selected

More information

UniPi technical documentation REV 1.1

UniPi technical documentation REV 1.1 technical documentation REV 1.1 Contents Overview... 2 Description... 3 GPIO port map... 4 Power Requirements... 5 Connecting Raspberry Pi to UniPi... 5 Building blocks... 5 Relays... 5 Digital Inputs...

More information

Greater Giving Online Software. Go Time. Quick Start Guide PRE-EVENT

Greater Giving Online Software. Go Time. Quick Start Guide PRE-EVENT Greater Giving Online Software Go Time Quick Start Guide PRE-EVENT Equipment and Internet Setup Set up registration equipment (laptops, ipads, tablets, PC s) Test internet connection on all devices you

More information

Inspiron 15. Service Manual. 3000 Series

Inspiron 15. Service Manual. 3000 Series Inspiron 15 3000 Series Service Manual Computer Model: Inspiron 15 3541/Inspiron 15 3542/Inspiron 15 3543 Regulatory Model: P40F Regulatory Type: P40F001/P40F002 Notes, Cautions, and Warnings NOTE: A NOTE

More information