Lab 2 Temperature Measurement System

Size: px
Start display at page:

Download "Lab 2 Temperature Measurement System"

Transcription

1 GOALS Lab 2 Temperature Measurement System 1) Build and test a thermistr circuit. 2) Write an Arduin prgram t acquire and send vltage data t a cmputer using the serial prt. 3) Write a MATLAB prgram t: a. Read data frm the serial prt. b. Prcess the raw data int temperature. c. Display a plt f temperature vs time. 4) Perfrm sme fun experiments with yur temperature measurement system! GENERAL GUIDELINES 1) Each student must build his/her wn circuit. 2) Due t the limited number f test statins, sme students need t pair up and share the test equipment. 3) Students are encuraged t help each ther. Of curse, Buma will be arund t prvide assistance as well. 4) Ask questins! The mre questins yu ask, the mre yu learn! REQUIRED MATERIALS Lab kit + pwer supply + scillscpe + test prbes Arduin Un + USB cable + cmputer with Arduin IDE and MATLAB AD620 instrumentatin amplifier (ne) 1.0 khm (brwn/black/red) resistrs (tw) 10 khm thermistr (cmes with a lng cable) 10 khm resistrs (brwn/black/range) (three) 100 khm resistr (brwn/black/yellw) (ne) LAB ACTIVITIES (4 PARTS) Fig. 1: Thermistr (Vishay BC Cmpnents). 1) Set up temperature measurement hardware. 2) Develp the Arduin data acquisitin prgram. 3) Develp the MATLAB data prcessing and display prgram. 4) Perfrm sme experiments with yur awesme temperature measurement system. 1

2 INTRODUCTION In this lab, yu will develp a temperature measurement system. A system blck diagram is shwn in Fig. 2. Here s hw it wrks: 1) The thermistr (in a quarter bridge) cnverts temperature t a vltage signal. 2) The instrumentatin amplifier increases the signal amplitude. 3) The amplifier utput is recrded by the Arduin and vltage data is sent t the cmputer. 4) The cmputer prcesses the data (using MATLAB) t prduce a plt f temperature versus time. Fig. 2: Overall temperature measurement system. PART 1: THERMISTOR CIRCUIT The thermistr circuit is shwn in Fig. 3. Task 1a: Build the quarter bridge circuit and instrumentatin amplifier (Fig. 3). Keep yur wiring neat! Yu can cnsult Buma s (r a neighbr s) breadbard fr guidance. Yu can re-use the AD620 chip and ther cmpnents frm Lab 1. Prperly clr cde yur wiring! RED = +5V BLACK = GND YELLOW = ther The thermistr cable has tw wires that plug int the bard it desn t matter which wire ges t pwer. 2

3 Fig. 3: Schematic fr thermistr circuit. Remember t clr cde yur wiring! Task 1b: Test the circuit. (End f Part 1) Use the scillscpe t measure the utput vltage at Pin 6 f the instrumentatin amplifier. Turn n the scpe, then press Frce Trigger t enable lcal (e.g. Frnt Panel) cntrl Press Default Setup t reset the scpe Make sure bth the scpe and prbe are set t 1X Adjust the scpe s vertical setting t 1V/div the trace shuld be near 2V. Zm in n the trace. First, center the trace in the middle f yur screen (use the small knb t scrll dwn). Next, zm in by changing the vertical setting t 500 mv/div. Finally, squeeze the thermistr between yur thumb and index finger the vltage shuld increase by rughly 200 mv r s. When yu let g the vltage shuld slwly return t its riginal value. If yu have cld fingers and cannt see a vltage change, yu can either: D abut 386 jumping jacks t warm up yur bdy. Ask a classmate with htter fingers t test yur circuit. 3

4 PART 2: ARDUINO Fr this lab, the Arduin will recrd Vmeas and send it t the PC. Unlike Lab 1, this lab will invlve mre cmmunicatin between the Arduin bard and the PC. This cmmunicatin is needed t minimize any lst data during transmissin. An utline f the Arduin cde is shwn belw: (a) Setup( ) rutine (b) Lp( ) rutine Initialize the serial prt Send message t PC Wait fr message frm PC If PC requests data, Recrd ADC utput Cmpute Vmeas Send Vmeas t cmputer Wait 500 ms STEP 2a: Dwnlad and unzip the Arduin template. G t the curse website and dwnlad Lab2_files.zip t yur desktp. Duble-click n the zipped flder. Select Extract all files (near tp f the windw) t unzip the cntents f the flder. Duble-click the Lab2_Arduin flder and pen the template. Yu can cnsult the Lab1 handut r Ggle fr help and/r examples using Arduin functins. STEP 2b: Write the setup( ) rutine. Initialize the serial prt using the Serial.begin cmmand Replace the??? with apprpriate cde. Use the Serial.begin cmmand and set the data rate t 9600 bits per secnd. Dn t frget the semicln at the end f each line! Send message t PC Use the Serial.println cmmand t send the single letter a. Duble qutes are imprtant! 4

5 STEP 2c: Declare variables fr the lp( ) rutine. The lp rutine uses five variables. Declare these befre the lp( ) rutine. As shwn in Fig. 4, Buma wrte the first ne fr yu (he is s kind.). Replace any ther??? with apprpriate cde. Data Type Name Value Purpse char PCstatus Stres ne byte f text data frm the PC int A0_PIN 0 Name f Analg Pin 0 int ADCutput Stres the ADC utput flat Vmeas Measured vltage int T 500 Time between readings (ms) Dn t frget semiclns at the end f each line! Fig. 4: Declare sme variables befre the lp( ) rutine. STEP 2d: Write the lp( ) rutine. Replace all the??? s that yur cde lks like Fig. 5. Cmments abut the cde. The Serial.available cmmand checks if the serial prt has received any data. The while lp repeats this prcess and stps when data has been received. The Serial.read cmmand reads ne byte f received data frm the serial prt. The Serial.read cmmand reads ne byte f received data and stres the value in PCstatus. If PCstatus is the character y, then we prceed t make a vltage measurement: Use the analgread cmmand t read the data frm A0_PIN. Cnvert ADCutput t Vmeas (see Lab1 handut if yu frgt hw t d this). Serial.println(Vmeas, 3) sends the Vmeas value (3 decimal places) Use the delay cmmand t wait T secnds befre the next sample acquisitin. 5

6 Fig. 5: The lp( ) rutine checks fr a message frm the PC and then makes a vltage measurement. STEP 2e: Uplad yur cde and bserve the Arduin utput using the Serial Mnitr n the cmputer. Yu shuld ntice the letter a n the first line (Fig. 6a). Nthing else shuld be happening, since the Arduin has nt received a y frm the cmputer. Type in the letter y in the cmmand line and press the Send buttn (see Fig. 6b). Yu shuld see a vltage value appear belw the letter a. Yur cde wrks if a new vltage value appears every time yu send y t the Arduin. Nice! Fig. 6: (a) The Serial Mnitr shuld nly shw the letter "a" when the Arduin cde starts. (b) Typing in "y" and pressing "Send" shuld cause the Arduin t recrd and send a vltage signal. Repeating this prcess results in new vltage values. STEP 2f: Cnnect yur thermistr circuit t the Arduin bard. 6

7 We want the thermistr circuit t be directly pwered by the Arduin bard. First, TURN OFF and DISCONNECT the benchtp pwer supply frm yur breadbard. Yu can put away the banana cables since they wn t be needed anymre. Secnd, DISCONNECT the USB cable frm yur Arduin bard. Third, use a RED wire t pwer yur breadbard frm the Arduin s +5V utput (see Fig. 7). It is OK t use a lng wire (e.g. few inches lng). Then use a BLACK wire t cnnect the breadbard grund t the GND pin f the Arduin. Finally, use a YELLOW wire t cnnect the amplifier utput (Pin 6) t the A0 pin f the Arduin. Re-cnnect the USB cable t the Arduin and re-run yur Arduin cde. View the Serial Mnitr t cnfirm that yu get a fairly steady vltage (e.g. smething like the right side f Fig. 7). Clse the Serial Mnitr when yu have cnfirmed that everything wrks OK. Fig. 7: Discnnect the benchtp supply, then pwer yur breadbard frm the Arduin s +5V utput and GND. Pin 6 f the AD620 chip is cnnected t A0 f the Arduin. It is perfectly OK t use lng wires (e.g. few inches) fr all three cnnectins. When yu re run yur Arduin cde, the Serial Mnitr shuld shw a fairly cnstant vltage. (End f Part 2) 7

8 PART 3: MATLAB WARM-UP EXERCISES Nw that we ve acquired Vmeas using the Arduin, we need t prcess Vmeas and display a plt f temperature n the cmputer. We ll d this using MATLAB! Buma will assume that yu knw sme MATLAB, but have n experience using MATLAB t cmmunicate with an external device. In the Lab2_files flder yu recently dwnladed frm the curse website, duble-click n the Lab2_MATLAB.m file. EXERCISE 3.1 Our first MATLAB exercise is t receive a single vltage measurement frm the Arduin. Hw t d this? Fig. 8 is the flw chart fr the Exercise 3.1 MATLAB prgram. Create serial prt cnnectin Wait fr Arduin message Request Vmeas frm Arduin Clse the serial cnnectin Fig. 8: Flw chart f the MATLAB prgram fr Exercise 3.1. STEP 3.1a: Replace any??? in the template s that yur cde lks like Fig. 9. Cmments abut the cde are shwn belw: Creating the serial prt cnnectin: The serial cmmand creates a serial prt bject that we will name serobj. Make sure the COM number is the same as in yur Arduin cde! We are using the set cmmand t cnfigure the data rate fr 9600 bits per secnd. The serial cnnectin is started by pening serobj using the fpen cmmand. The disp cmmand displays a message in the MATLAB Cmmand Windw. Waiting fr the Arduin message: The variable ArduinReady stres the message frm the Arduin. We will initially assume ArduinReady is the letter n. We are using a while lp t repeatedly check fr a message frm the Arduin. The lp keeps ging as lng as ArduinReady is NOT equal t a. The fscanf cmmand reads the received data cntained in serobj. The %s ptin means that the message is a text string. 8

9 Fig. 9: Yur MATLABcde shuld lk like this. D NOT frget the semiclns! Requesting Vmeas frm the Arduin: The fprintf cmmand sends the letter y t the Arduin via serobj. The %c ptin means that the message is a text character. The fscanf cmmand reads the received data cntained in serobj. The %f ptin means the data is a flating pint number. Finishing up the prcess: The fclse cmmand clses serobj, which terminates the serial prt cnnectin. STEP 3.1b: Save yur prgram, then run it by clicking n the Run buttn (with green triangle) at the tp f the MATLAB windw. The cmmand windw (bttm f MATLAB windw) shuld lk smething like Fig. 10. If yu get a COM nt available errr, it mst likely means yu did nt use the crrect COM prt number when using the serial cmmand. 9

10 If yu get errrs: First, manually clse the serial bject via the cmmand line by ding the fllwing: >> fclse(serobj) Why d this? When yur prgram exits prematurely due t an errr, it leaves the serobj pen. MATLAB des nt like this and will prevent further cmmunicatin thrugh the serial prt. Highly annying! In yur prgram, make sure: Yu prperly use semiclns. Yu prperly use SINGLE qutes instead f duble qutes. Fr example, %s is crrect while %s is wrng. Once yur prgram wrks, lk at the Arduin while yu click the MATLAB Run buttn: The Arduin s L LED shuld quickly blink a few times, fllwed by a quick flash f the Tx and Rx LEDs. Fig. 10: The cmmand windw (bttm f MATLAB windw) shuld lk like this. EXERCISE 3.2 Our next MATLAB exercise is t make a plt f Vmeas streamed frm the Arduin. Fig. 11 shws the flw chart. Update data with new Vmeas Create serial prt cnnectin Wait fr Arduin message Create windw fr pltting data Request Vmeas frm Arduin Repeat Clse the serial cnnectin Update the plt with new data Fig. 11: Flw chart fr the MATLAB prgram t plt Vmeas that is streamed frm the Arduin. 10

11 STEP 3.2a: The first tw sectins f the MATLAB prgram are identical t yur Exercise 3.1 cde. Insert a new sectin f cde, as shwn in Fig. 12, just after the disp( Arduin is ready ); line f cde. This new cde will create the windw fr pltting data. Cmments abut the cde are shwn belw: We first need t create a 1-D array f time values fr pltting. The time vectr t has a length f N = 50 samples. The time increment is dt = 0.5 secnds. The time vectr is therefre [0, dt, 2dt, 3dt,..., 49dt] = [0, 1, 2, 3,..., N-1]dt We next create an array f vltage values. The vltage vectr Vdata will initially be defined as a 1-D array f nes. The figure cmmand creates a windw, where we assign h as the figure name. The plt cmmand plts t n the x-axis and Vdata n the y-axis. drawnw displays the plt immediately (this is necessary while the prgram is running). We want the prgram t STOP when the user clicks n the figure windw. We can d this using the ButtnDwnFcn in MATLAB. The ButtnDwnFcn is a functin that des smething when the user clicks n the figure. We use the set cmmand t cnfigure the ButtnDwnFcn t d whatever we want. We define a variable q that is initially equal t 0. When the use clicks n figure h, we want ButtnDwnFcn t make q = 1. Later in the cde we ll see hw q = 1 causes a while lp t exit. Fig. 12: This part f the cde creates 1 D arrays fr time and vltage, displays a plt, and cnfigures the ButtnDwnFcn feature. 11

12 STEP 3.2b: Nw we need t implement a live feed f data frm the Arduin! Replace all??? with apprpriate cde shwn in Fig. 13. Cmments abut the cde are shwn belw: The while lp keeps running as lng as q is equal t 0. Requesting Vmeas frm the Arduin: The fprintf cmmand sends the letter y t the Arduin via serobj. The %c ptin means that the message is a text character. The fscanf cmmand reads the received data cntained in serobj. The %f ptin means the data is a flating pint number. We want the mst recent Vmeas value t be the LAST element in the Vdata array. We shift the existing Vdata elements t the left. We then assign the last element in Vdata t be equal t Vmeas. Pltting the updated data: The plt cmmand plts the updated Vdata as a functin f t. The ylim cmmand sets the y-axis limits f the plt. The drawnw cmmand is necessary t display the updated plt immediately. We then assign the last element in Vdata t be equal t Vmeas. The last sectin f the prgram ( Finish up the prcess ) is the same as befre. Fig. 13: The data acquisitin lp des tw things: (1) request Vmeas frm the Arduin (2) display an updated plt. 12

13 STEP 3.2c: Save yur prgram, then run it by clicking n the Run buttn (with green triangle) at the tp f the MATLAB windw. If yu get any errrs, remember t manually clse the serial bject via the cmmand line: >> fclse(serobj) A plt shuld appear with a wavefrm that is scrlling t the left. An example is shwn in Fig. 14. When the prgram starts, the vltage will quickly jump t rughly 2.4V r s. Pinching the thermistr causes the vltage t increase. Releasing the thermistr causes the vltage t drp. Fig. 14: Example f streamed data frm the Arduin. The live data stream keeps ging until yu click the figure just utside the white plt area. (End f Part 3) PART 4: TEMPERATURE MEASUREMENT OK, nw it s time t implement the temperature measurement system! Our MATLAB cde shuld receive ne sample f Vmeas frm the Arduin, cnvert Vmeas t RT, then use the Steinhart-Hart equatin t cmpute temperature Temp in degrees Celsius, and update a scrlling plt f Temp vs t. Frm PreLab 2, Vmeas is cnverted t RT using the fllwing tw equatins: / ; /0.5 ; The extended Steinhart-Hart equatin is given belw (T is in Kelvin): 1/ lg lg In MATLAB, the natural lgarithm functin is lg (it is nt ln). Yu want temperature in degrees Celsius, s yu need t slightly mdify the abve equatin! 13

14 Task 4a: Using yur Exercise 3.2 cde as a starting pint, mdify yur cde t prduce a live plt f temperature. Cmments abut the cde are shwn belw: Yu shuld replace Vdata (vltage vectr) with Temp (temperature vectr). In Exercise 3.2, we initially defined Vdata as an array f 1s (e.g. [1, 1, 1,, 1]). When creating Temp, it shuld be initialized as an array f 25s (e.g. [25, 25, 25,, 25]). It is a gd idea t define any cnstants (e.g. Ad) befre the data acquisitin lp. It is fine t assume Ad = and Vref = 2.5. Be careful with units! Since the equatin fr RT invlves khms, yu shuld use R25 = 10. The Steinhart-Hart cefficients fr the thermistr are: A = e-3; B = e-4; C = e-6; D = e-8; The y-axis limits f the temperature plt shuld be between 10 and 35 degrees Celsius. Due t the lack f a calibrated temperature surce, we will nt calibrate ur system. Please d nt be t disappinted Task 4b: When yu run yur cde, a plt shuld appear with a wavefrm that is scrlling t the left. If yu get any errrs, remember t manually clse the serial bject via the cmmand line: >> fclse(serobj) A successful example plt is shwn in Fig. 15. Remember that the temperature is initially assumed t be 25 C. The actual temperature in Buma s ffice was arund 22 C, which explains the sudden drp in the wavefrm. The temperature increased when Buma pinched the thermistr. The temperature drpped when the thermistr was released. The acquisitin was stpped by clicking OUTSIDE the white plt area f the figure. Task 4c: Recrd and save a warm plt with yur thermmeter. Yu can pinch the thermistr with yur fingers r dip the thermistr tip int a cup f warm water. Task 4d: Recrd and save a cld plt (dip the thermistr tip int ice water) with yur thermmeter. Task 4e: Dem yur awesme system t Buma! Fig. 15: Example f streaming plt shwing temperature rise and fall versus time. (End f Lab 2) 14

Arduino Basics Intro to ArduBlocks

Arduino Basics Intro to ArduBlocks Arduin Basics Intr t ArduBlcks Materials: Arduin ArduBlcks Sftware Arduin IDE Laptp Breadbard Wires Resistrs LEDs Ptentimeter Temprary Push Buttn Get the Sftware Dwnlad Arduin IDE https://www.arduin.cc/en/main/sftware

More information

Preparation: Follow the instructions on the course website to install Java JDK and jgrasp on your laptop.

Preparation: Follow the instructions on the course website to install Java JDK and jgrasp on your laptop. Lab 1 Name: Checked: (instructr r TA initials) Objectives: Learn abut jgrasp - the prgramming envirnment that we will be using (IDE) Cmpile and run a Java prgram Understand the relatinship between a Java

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

USER GUIDE. Thanks for purchasing the igate! You ll need to follow these five Configuration Steps to get your igate up and running:

USER GUIDE. Thanks for purchasing the igate! You ll need to follow these five Configuration Steps to get your igate up and running: USER GUIDE Thanks fr purchasing the igate! Yu ll need t fllw these five Cnfiguratin Steps t get yur igate up and running: 1. Cnfigure Yur Hardware 2. Cnfigure Yur Cmputer 3. Cnfigure Yur Internet Cnnectin

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 1 - Calculatr Intrductin In this lab yu will be writing yur first

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash

UiPath Automation. Walkthrough. Walkthrough Calculate Client Security Hash UiPath Autmatin Walkthrugh Walkthrugh Calculate Client Security Hash Walkthrugh Calculate Client Security Hash Start with the REFramewrk template. We start ff with a simple implementatin t demnstrate the

More information

Reading and writing data in files

Reading and writing data in files Reading and writing data in files It is ften very useful t stre data in a file n disk fr later reference. But hw des ne put it there, and hw des ne read it back? Each prgramming language has its wn peculiar

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

Dear Milestone Customer,

Dear Milestone Customer, Dear Milestne Custmer, With the purchase f Milestne Xprtect Transact yu have chsen a very flexible ptin t yur Milestne Xprtect Business slutin. Milestne Xprtect Transact enables yu t stre a serial data

More information

LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C

LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C LAB 7 (June 29/July 4) Structures, Stream I/O, Self-referential structures (Linked list) in C Due: July 9 (Sun) 11:59 pm 1. Prblem A Subject: Structure declaratin, initializatin and assignment. Structure

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

TECHNICAL REQUIREMENTS

TECHNICAL REQUIREMENTS TECHNICAL REQUIREMENTS Table f Cntent PLATFORMS... 2 CONNECTION SPEED... 2 SUPPORTED BROWSERS... 2 ARMENIAN LANGUAGE SUPPORT... 2 Windws XP... 2 Windws Vista... 3 Windws 7... 4 Windws 8... 5 MAC OS...

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use

Recommended Minimum Requirements for Cisco Meeting Application Web RTC Use Recmmended Minimum Requirements fr Cisc Meeting Applicatin Web RTC Use Fr the best experience the fllwing requirements and recmmendatins shuld be fllwed. Requirements: External USB web camera capable f

More information

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 Iterative Code Design handout Style Guidelines handout

Lab 1 - Calculator. K&R All of Chapter 1, 7.4, and Appendix B1.2 Iterative Code Design handout Style Guidelines handout UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2013 Lab 1 - Calculatr Intrductin Reading Cncepts In this lab yu will be

More information

FIT 100. Lab 10: Creating the What s Your Sign, Dude? Application Spring 2002

FIT 100. Lab 10: Creating the What s Your Sign, Dude? Application Spring 2002 FIT 100 Lab 10: Creating the What s Yur Sign, Dude? Applicatin Spring 2002 1. Creating the Interface fr SignFinder:... 1 2. Creating Variables t hld values... 4 3. Assigning Values t Variables... 4 4.

More information

COP2800 Homework #3 Assignment Spring 2013

COP2800 Homework #3 Assignment Spring 2013 YOUR NAME: DATE: LAST FOUR DIGITS OF YOUR UF-ID: Please Print Clearly (Blck Letters) YOUR PARTNER S NAME: DATE: LAST FOUR DIGITS OF PARTNER S UF-ID: Please Print Clearly Date Assigned: 15 February 2013

More information

Simple Regression in Minitab 1

Simple Regression in Minitab 1 Simple Regressin in Minitab 1 Belw is a sample data set that we will be using fr tday s exercise. It lists the heights & weights fr 10 men and 12 wmen. Male Female Height (in) 69 70 65 72 76 70 70 66 68

More information

Gemini Intercom Quick Start Guide

Gemini Intercom Quick Start Guide Gemini Intercm Quick Start Guide 2 Quick Start Guide Cntents Cntents... 1 Overview... 3 First Step unpack and inspect... 3 Netwrk plan and IP addresses... 4 Management PC... 5 Install Sftware... 6 Cnfigure

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

Laboratory Exercise 3 Using the PIC18

Laboratory Exercise 3 Using the PIC18 Labratry Exercise 3 Using the PIC18 Until this pint, the user has prgrammed the FPGA Interface Bard using the FTDI and has nt been intrduced t the n bard PIC18F2550 micrcntrller. The purpse f this experiment

More information

istartsmart 3.5 Upgrade - Installation Instructions

istartsmart 3.5 Upgrade - Installation Instructions istartsmart 3.5 Upgrade - Installatin Instructins Minimum System Requirements: Hatch All-In-One istartsmart Cmputer Learning Center v1.0 r v1.1 Internet access - either hard-wired r wireless cnnectin is

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats Updating Yur CTOG 250 Cmtech Traffic Optimizatin Gateway Firmware I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The CTOG 250 Cmtech Traffic Optimizatin Gateway and its CDM 800 Gateway

More information

LAB 0 MATLAB INTRODUCTION

LAB 0 MATLAB INTRODUCTION Befre lab: LAB 0 MATLAB INTRODUCTION It is recmmended that yu d the secnd prblem n the hmewrk befre cming t lab, althugh that wn t be required r cllected in lab. It is als recmmended that yu read the Intrductin

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

Lab 0: Compiling, Running, and Debugging

Lab 0: Compiling, Running, and Debugging UNIVERSITY OF CALIFORNIA, SANTA CRUZ BOARD OF STUDIES IN COMPUTER ENGINEERING CMPE13/L: INTRODUCTION TO PROGRAMMING IN C SPRING 2012 Lab 0: Cmpiling, Running, and Debugging Intrductin Reading This is the

More information

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command

Using CppSim to Generate Neural Network Modules in Simulink using the simulink_neural_net_gen command Using CppSim t Generate Neural Netwrk Mdules in Simulink using the simulink_neural_net_gen cmmand Michael H. Perrtt http://www.cppsim.cm June 24, 2008 Cpyright 2008 by Michael H. Perrtt All rights reserved.

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Gmail and Google Drive for Rutherford County Master Gardeners

Gmail and Google Drive for Rutherford County Master Gardeners Gmail and Ggle Drive fr Rutherfrd Cunty Master Gardeners Gmail Create a Ggle Gmail accunt. https://www.yutube.cm/watch?v=kxbii2dprmc&t=76s (Hw t Create a Gmail Accunt 2014 by Ansn Alexander is a great

More information

Adobe Connect 8 Event Organizer Guide

Adobe Connect 8 Event Organizer Guide Adbe Cnnect 8 Event Organizer Guide Questins fr Meeting HOST t ask at rganizatin meeting: Date (r dates) f event including time. Presenting t where Lcal ffice cubicles, reginal r glbal ffices, external

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

IFSP PDF Upload/Download Guidance

IFSP PDF Upload/Download Guidance IFSP PDF Uplad/Dwnlad Guidance Intr/backgrund The dwnladable IFSP was created t assist FSC s in writing an IFSP r IFSP review n a visit withut the need fr internet cnnectin. Adbe Acrbat is required fr

More information

CSCI L Topics in Computing Fall 2018 Web Page Project 50 points

CSCI L Topics in Computing Fall 2018 Web Page Project 50 points CSCI 1100-1100L Tpics in Cmputing Fall 2018 Web Page Prject 50 pints Assignment Objectives: Lkup and crrectly use HTML tags in designing a persnal Web page Lkup and crrectly use CSS styles Use a simple

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

FAQ. Using the Thinkific Learning Platform

FAQ. Using the Thinkific Learning Platform FAQ Using the Thinkific Learning Platfrm General Infrmatin Thinkific is the curse building sftware we have chsen t use fr ur n-line classes. The fllwing sectins prvide infrmatin n issues that may arise

More information

Copy your Course: Export and Import

Copy your Course: Export and Import Center f elearning The exprt curse feature creates a ZIP file f yur curse cntent yu will imprt t yur new curse. Exprt packages are dwnladed and imprted as cmpressed ZIP files. D nt unzip an exprt package

More information

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

More information

HOW TO live-stream softball on a minimal budget

HOW TO live-stream softball on a minimal budget HOW TO live-stream sftball n a minimal budget It s a ne-camera live-stream with the pssiblity f changing scre, uts, innings. Yu can als add additinal graphics r live cmmentary. WHAT DO YOU NEED A laptp

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers Page 1 f 18 HW4 Sftware versin 3 Device Manager and Data Lgging LOG-RC Series Data Lggers 2011; Page 2 f 18 Table f cntents 1 ORGANIZATION OF THE HW4 MANUALS... 3 2 OVERVIEW... 4 3 INITIAL SETUP... 4 3.1

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016 Applicatin Nte Digi Cnnect Wi-SP Trubleshting Guide Digi Technical Supprt 10 May 2016 Cntents 1 Intrductin... 3 1.1 Assumptins... 3 1.2 Crrectins... 3 2 Quick Facts... 3 2.1 Cmmn Questins Abut the Cnnect

More information

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools.

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools. Q.1 What is Trubleshting Tls? List their types? Trubleshting f netwrk prblems is find and slve with the help f hardware and sftware is called trubleshting tls. Trubleshting Tls - Hardware Tls They are

More information

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files.

Interfacing to MATLAB. You can download the interface developed in this tutorial. It exists as a collection of 3 MATLAB files. Interfacing t MATLAB Overview: Getting Started Basic Tutrial Interfacing with OCX Installatin GUI with MATLAB's GUIDE First Buttn & Image Mre ActiveX Cntrls Exting the GUI Advanced Tutrial MATLAB Cntrls

More information

Firmware Upgrade Wizard v A Technical Guide

Firmware Upgrade Wizard v A Technical Guide Firmware Upgrade Wizard v4.1.1 A Technical Guide Nvember 2015 Intrductin The Firmware Upgrade Wizard prvides the fllwing features: It supprts upgrading the firmware n designated devices, see Supprted devices.

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

6 Ways to Streamline Your Tasks in Outlook

6 Ways to Streamline Your Tasks in Outlook 6 Ways t Streamline Yur Tasks in Outlk Every jb requires a variety f tasks during a given day. Maybe yurs includes meeting with clients, preparing a presentatin, r cllabrating with team members n an imprtant

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Spring 2016 Lab Prject (PART A): A Full Cmputer! Issued Fri 4/8/16; Suggested

More information

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide

Quick Start Guide. Basic Concepts. DemoPad Designer - Quick Start Guide Quick Start Guide This guide will explain the prcess f installing & using the DemPad Designer sftware fr PC, which allws yu t create a custmised Graphical User Interface (GUI) fr an iphne / ipad & embed

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

Use of GIS & GPS in Trail and Land Management

Use of GIS & GPS in Trail and Land Management CLCC Cnference 2014 Intrductin t CT ECO Use f GIS & GPS in Trail and Land Management Explre CT ECO CT ECO is a partnership between the CT Department f Energy and Envirnmental Prtectin (CT DEEP) and the

More information

Infinity RGB & Grayscale SERIES

Infinity RGB & Grayscale SERIES Infinity RGB & Grayscale SERIES OPTV2SS Internal Cntrller Setup Guide Mar. 2011 Step 1. Uncrating and Lifting Open the crate frm the tp. Use crane r frklift t lift the display ut f the crate. Always use

More information

SGL Observatory Automation. ASCOM Motor Focuser Control Getting Started Guide

SGL Observatory Automation. ASCOM Motor Focuser Control Getting Started Guide SGL Observatry Autmatin ASCOM Mtr Fcuser Cntrl Getting Started Guide Written by Christian Guenther (yesyes) Dcument versin V1.0 20 September 2011 Intrductin SGL Observatry Autmatin is an pen surce prject

More information

Geometer s Sketchpad can do the same thing but still has the power to manipulate the unit piece after you have completed your tessellated plane.

Geometer s Sketchpad can do the same thing but still has the power to manipulate the unit piece after you have completed your tessellated plane. (Gemeter's Sketchpad Tessellatins) Have yu ever made a tessellatin ut f fragmented parallelgram? Gemeter s Sketchpad can d the same thing but still has the pwer t manipulate the unit piece after yu have

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questins Date f Last Update: FAQ SatView 0001 SatView is nt pening and hangs at the initial start-up splash screen This is mst likely an issue with ne f the dependency, SQL LcalDB, missing

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Information on using ChurchApp

Information on using ChurchApp Infrmatin n using ChurchApp 1. Intrductin What is ChurchApp? ChurchApp is an nline system which enables us t d many things at its mst simple level it serves as an nline address bk fr Emmanuel; we are als

More information

This Friday Jan 20th at La Hacienda Recreation Center at 1:00 pm we will have our famous Technology Auction and ice cream.

This Friday Jan 20th at La Hacienda Recreation Center at 1:00 pm we will have our famous Technology Auction and ice cream. This Friday Jan 20th at La Hacienda Recreatin Center at 1:00 pm we will have ur famus Technlgy Auctin and ice cream. Yu dn't want t miss this meeting. Yu will have a chance t win new laptps, a Tablet,

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

Employee Self Service (ESS) FAQs

Employee Self Service (ESS) FAQs Emplyee Self Service (ESS) FAQs ESS User Access & Lgin/Passwrd Inf Upgrade Changes t ESS Recently we upgrades t versin 10 f ur HR/Payrll system which includes the Emplyee Self Service (ESS) mdule. Just

More information

Programming Project: Building a Web Server

Programming Project: Building a Web Server Prgramming Prject: Building a Web Server Submissin Instructin: Grup prject Submit yur cde thrugh Bb by Dec. 8, 2014 11:59 PM. Yu need t generate a simple index.html page displaying all yur grup members

More information

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De

Cntents 1 Intrductin Kit Cntents Requirements Installatin Gesture Sensr Kit Hardware and Jumper Settings De Thin Film Pyrelectric IR Gesture Sensr Demnstratr Kit Fr lw pwer, high perfrmance gesture cntrl User Guide Versin 1.0 Dcument Revisin 1.00 20 th February 2012 Cntents 1 Intrductin... 3 1.1 Kit Cntents...

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Panorama Offsite Access Prepared for: WRHA Mass Immunization Events

Panorama Offsite Access Prepared for: WRHA Mass Immunization Events Panrama Offsite Access Prepared fr: WRHA Mass Immunizatin Events Page 1 f 7 This dcument utlines the steps fr Public Health Nurses n hw t access Panrama ffsite. Hardware Requirements: 1. Laptp cnfigured

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

MySqlWorkbench Tutorial: Creating Related Database Tables

MySqlWorkbench Tutorial: Creating Related Database Tables MySqlWrkbench Tutrial: Creating Related Database Tables (Primary Keys, Freign Keys, Jining Data) Cntents 1. Overview 2 2. Befre Yu Start 2 3. Cnnect t MySql using MySqlWrkbench 2 4. Create Tables web_user

More information

Trimble Survey GNSS Firmware Version 4.81 (July 2013)

Trimble Survey GNSS Firmware Version 4.81 (July 2013) Handheld Integrated Mdular RELEASE NOTES TRIMBLE SURVEY GNSS FIRMWARE Trimble Survey GNSS Firmware Versin 4.81 (July 2013) Requirements This firmware versin includes imprvements t the Survey Receiver firmware.

More information

Quick Start Guide for EAB Campus Advisors

Quick Start Guide for EAB Campus Advisors Student Success Cllabrative Quick Start Guide fr EAB Campus Advisrs Clemsn has launched the EAB Campus platfrm fr advisrs and thers, with the gal f helping students explre a path t timely graduatin cmpletin

More information

Model WM100. Product Manual

Model WM100. Product Manual Mdel WM100 Prduct Manual Table f Cntents Sectin Page 1. Hardware... 3 2. Sftware... 4 3. Features... 5 4. Installatin... 6 5. App Devices... 9 6. App Rms... 12 7. App Scenes... 14 8. App Setup... 18 Cntents

More information

I. Introduction: About Firmware Files, Naming, Versions, and Formats

I. Introduction: About Firmware Files, Naming, Versions, and Formats I. Intrductin: Abut Firmware Files, Naming, Versins, and Frmats The UT-4500-A Series Upcnverters and DT-4500-A Series Dwncnverters stre their firmware in flash memry, which allws the system t uplad firmware

More information

TRAINING GUIDE. Lucity Mobile

TRAINING GUIDE. Lucity Mobile TRAINING GUIDE The Lucity mbile app gives users the pwer f the Lucity tls while in the field. They can lkup asset infrmatin, review and create wrk rders, create inspectins, and many mre things. This manual

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

from DDS on Mac Workstations

from DDS on Mac Workstations Email frm DDS n Mac Wrkstatins Intrductin This dcument describes hw t set email up t wrk frm the Datacn system n a Mac wrkstatin. Yu can send email t anyne in the system that has an email address, such

More information

Qualtrics Instructions

Qualtrics Instructions Create a Survey/Prject G t the Ursinus Cllege hmepage and click n Faculty and Staff. Click n Qualtrics. Lgin t Qualtrics using yur Ursinus username and passwrd. Click n +Create Prject. Chse Research Cre.

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

Instructions for Accessing Online Testing Resources

Instructions for Accessing Online Testing Resources Instructins fr Accessing Online Testing Resurces 2018-2019 Hw t get help fr Testing Applicatin Functinality / System Errrs (nt lgin issues): IMPORTANT: The rle f the District s IT staff and Help Desk in

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Designing a mdule with multiple memries Designing and using a bitmap fnt Designing a memry-mapped display Cmp 541 Digital

More information

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson Tips and Tricks in Wrd 2000 Part II Presented by Carla Trgersn (cnt2@psu.edu) 1. using styles Styles are used t create frmatting shrtcuts s yu can create a dcument that has frmatting cnsistency. Fr example,

More information

The VMs in the CIS VLab (Virtual Lab) We will be using a number of different Virtual Machines (VMs) in VLab for this course.

The VMs in the CIS VLab (Virtual Lab) We will be using a number of different Virtual Machines (VMs) in VLab for this course. Lab 1: Using the CIS 192 Lab Resurces The purpse f this lab is t becme familiar with the CIS Lab resurces and t start practicing sme ld and new Linux cmmands. Resurces The Opus server CIS VLab (Virtual

More information

CS1150 Principles of Computer Science Introduction (Part II)

CS1150 Principles of Computer Science Introduction (Part II) Principles f Cmputer Science Intrductin (Part II) Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Review Terminlgy Class } Every Java prgram must have at least

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider

Deploy Your First Cloud Foundry App to Any Cloud Foundry Service Provider Deply Yur First Clud Fundry App t Any Clud Fundry Service Prvider cludwrkshp.rg/cludfundry Presenter: Dave Nielsen Clud Cmputing Evangelist @davenielsen May 2015 Dave Nielsen dnielsen@gmail.cm twitter.cm/davenielsen

More information

Properties detailed info There are a few properties in Make Barcode to set for the output of your choice.

Properties detailed info There are a few properties in Make Barcode to set for the output of your choice. Make Barcde Page 1/5 Make Barcde Descriptin Make Barcde let yu create a wide variety f different barcdes in different file frmats. Yu can add the barcde values as variable data frm metadata surces r by

More information

TechSmith Relay 5.1.5

TechSmith Relay 5.1.5 TechSmith Relay 5.1.5 WHAT END USERS NEED TO KNOW This upgrade cmes with new features that will be available t yu. Fr all f these feature t be installed n yur cmputer few steps will need t be taken. After

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

Automatic imposition version 5

Automatic imposition version 5 Autmatic impsitin v.5 Page 1/9 Autmatic impsitin versin 5 Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A3, A4, A5 r US Letter page

More information

CSE 361S Intro to Systems Software Lab #2

CSE 361S Intro to Systems Software Lab #2 Due: Thursday, September 22, 2011 CSE 361S Intr t Systems Sftware Lab #2 Intrductin This lab will intrduce yu t the GNU tls in the Linux prgramming envirnment we will be using fr CSE 361S this semester,

More information

WebEx Web Conferencing Quick Start Guide

WebEx Web Conferencing Quick Start Guide WebEx Web Cnferencing Quick Start Guide WebEx allws the curse instructr and participants t cnnect using web cnferencing and VIP using yur cmputer r smart device. WebEx's allws yu t share cntent, chat,

More information

Tips For Customising Configuration Wizards

Tips For Customising Configuration Wizards Tips Fr Custmising Cnfiguratin Wizards ver 2010-06-22 Cntents Overview... 2 Requirements... 2 Applicatins... 2 WinSCP and Putty... 2 Adding A Service T An Existing Wizard... 3 Gal... 3 Backup Original

More information