DFRobot Romeo All-in-one Microcontroller (ATMega 328) Product code : RB-Dfr-36. Manual. o o. o o o. o 6.2 Example use of Button 1-5. o o o o.

Size: px
Start display at page:

Download "DFRobot Romeo All-in-one Microcontroller (ATMega 328) Product code : RB-Dfr-36. Manual. o o. o o o. o 6.2 Example use of Button 1-5. o o o o."

Transcription

1 DFRbt Rme All-in-ne Micrcntrller (ATMega 328) Prduct cde : RB-Dfr-36 Manual A. Please read this manual carefully befre applying pwer n the device. B. D nt use this device fr military r medical purpse as they are nt designed t. Cntents 1 Intrductin 2 Specificatin 3 DFRduin RMe Pinut 4 Befre yu start 4.1 Applying Pwer 4.2 Sftware 5 Rme Cnfiguratin 5.1 Serv Pwer Select Jumper 5.2 Mtr Cntrl Pin Jumper 5.3 Wireless Select Jumper 6 Tutrial 6.1 Buttn Press 6.2 Example use f Buttn Dual DC Mtr Speed Cntrl 7.1 Hardware Setting 7.2 Pin Allcatin 7.3 PWM Cntrl Mde 7.4 PLL Cntrl Mde 8 Schematics

2 Intrductin RMe is an All-in-One micrcntrller especially designed fr rbtics applicatin. Benefit frm Arduin pen surce platfrm, it is supprted by thusands f pen surce cdes, and can be easily expanded with mst Arduin Shields. The integrated 2 way DC mtr driver and wireless scket gives a much easier way t start yur rbtic prject. Specificatin Atmega 168/ Channels Digital I/O 6 PWM Channels (Pin11,Pin10,Pin9,Pin6,Pin5,Pin3) 8 Channels 10-bit Analg I/O USB interface Aut sensing/switching pwer input ICSP header fr direct prgram dwnlad Serial Interface TTL Level Supprt AREF Supprt Male and Female Pin Header Integrated sckets fr APC220 RF Mdule and DF-Bluetth Mdule Five I2C Interface Pin Sets Tw way Mtr Drive with 2A maximum current 7 key inputs DC SupplyUSB Pwered r External 7V~12V DC DC Output5V /3.3V DC and External Pwer Output

3 Dimensin90x80mm DFRduin RMe Pinut Figure 1 Rme Pin Out The picture abve shws all f the I/O lines and Cnnectrs n the Rme, which includes: One Regulated Mtr Pwer Input Terminal (6v t12v) One Unregulated Serv Pwer Input Terminal (yu supply regulated 4v t 7.2v) One Serv input pwer selectin jumper One Serial Interface Mdule Header fr APC220/Bluetth Mdule Tw DC Mtr Terminals Handles mtr current draw up t 2A, each terminal One I2C/TWI Prt SDA, SCL, 5V, GND One Analg Prt with 8 analg inputs ne input is tied internally t the supply vltage One General Purpse I/O Prt with 13 I/O lines 4,5,6,7 can be used t cntrl mtrs One Reset Buttn Jumper bank t Enable/Disable Mtr Cntrl

4 Befre yu start Applying Pwer This is ne f the mst imprtant steps in getting the Rme up and cmmunicating with yur hst cntrller. Yu MUST make sure that yu apply pwer t the Pwer Terminal using the crrect plarity. Reverse Plarity will damage the Rme. We are nt respnsible fr such damage, nr d we warranty against such damage. Make sure yu take time t apply pwer crrectly. Otherwise, it culd get cstly fr yu! Pwer frm USB: Simply plug USB cable, and the Rme is able t wrk. Please ntice that the USB can nly supply 500 ma current. It shuld be able t meet the mst requirements fr LED lit applicatin. Hwever it is nt enugh t pwer DC mtrs r serv. Pwer frm Mtr Pwer Input: Simply cnnect the grund wire frm yur supply t the screw terminal labeled GND, and then cnnect the psitive wire frm yur supply t the screw terminal labeled VIN". NOTE: Maximum supply vltage cannt exceed 14V DC. Sftware RMe can be prgrammed by Arduin IDE 0014 and abve versin. It can be dwnladed at Please select Arduin Nan as the hardware. Rme Cnfiguratin Serv Pwer Select Jumper As mst serv draw mre current than the USB pwer surce can supply. A separate serv pwer terminal is prvided t pwer the serv individually which can be Enable/Disable by the Serv Pwer Select Jumper. When the Serv Pwer Select Jumper is applied, the serv is pwered by internal 5V. When the Serv Pwer Select Jumper is nt applied, the serv is pwered by external pwer surce. The Rme V1.0 uses an autmatic switcher fr the pwer surce selectin. When the external pwer surce has been applied, the serv will be autmatically pwered by the external pwer instead f USB pwer. Mtr Cntrl Pin Jumper Applying the Mtr Cntrl Pin Jumpers will allcate Pin 5,6,7,8 fr mtr cntrl. Remving the jumpers will release the abve Pins. Wireless Select Jumper Applying the Wireless Select Jumper will allw the Rme cmmunicate via its wireless mdule such as APC220 and DF-Bluetth mdule. If n wireless mdule is plugged, this jumper des nt make any difference. Remving the jumper will disable wireless mdule and allws the sketch t be upladed.

5 Tutrial Buttn Press RMe has 7 build in buttns S1-S7 (Figure 2). S1-S5 use analg input, S6,S7 use digital input. Figure 2 Rme Buttns Example use f Buttn 1-5 // //Key message char msgs[5][15] = "Right Key OK ", "Up Key OK ", "Dwn Key OK ", "Left Key OK ", "Select Key OK" ; int adc_key_val[5] =30, 150, 360, 535, 760 ; int NUM_KEYS = 5; int adc_key_in; int key=-1; int ldkey=-1; vid setup() pinmde(13, OUTPUT); //we'll use the debug LED t utput a heartbeat vid lp() adc_key_in = analgread(0); // read the value frm the sensr digitalwrite(13, HIGH); key = get_key(adc_key_in); // cnvert int key press if (key!= ldkey) // if keypress is detected delay(50); // wait fr debunce time adc_key_in = analgread(0); // read the value frm the sensr key = get_key(adc_key_in); // cnvert int key press if (key!= ldkey)

6 ldkey = key; if (key >=0) Serial.printIn(msgs[key]); digitalwrite(13, LOW); // Cnvert ADC value t key number int get_key(unsigned int input) int k; fr (k = 0; k < NUM_KEYS; k++) if (input < adc_key_val[k]) return k; if (k >= NUM_KEYS) k = -1; // N valid key pressed return k; T enable S6 and S7, please apply the jumpers indicated in the red circle. S6 uses Digital Pin2, S7 uses Digital Pin3. Once these enable jumpers have been applied, Pin 2 and 3 will be ccupied (Figure 3).

7 Figure 3 Buttn Enable Jumpers Sample cde int ledpin = 13; int key_s6 = 2; int val=0; vid setup() pinmde(ledpin, OUTPUT); // Set Pin13 t utput mde pinmde(key_s6, INPUT); // Set Pin12 t utput mde vid lp() if(digitalread(key_s6)==0) // while(!digitalread(key_s6)); val++; if(val==1) digitalwrite(ledpin, HIGH); //

8 if(val==2) val=0; digitalwrite(ledpin, LOW); // //Sample 2: //Cde functin: Press buttn S6, turn n LED, Press buttn S7, turn ff LED. Sample cde int ledpin = 13; // int key_s6 = 2; // int key_s7 = 3; // vid setup() pinmde(ledpin, OUTPUT); // pinmde(key_s6, INPUT); // pinmde(key_s7, INPUT); // vid lp() if(digitalread(key_s6)==0) // digitalwrite(ledpin, HIGH); // if(digitalread(key_s7)==0) // digitalwrite(ledpin, LOW); //

9 Dual DC Mtr Speed Cntrl Hardware Setting Cnnect fur mtr wires t Mtr Terminal. And apply pwer thrugh mtr pwer terminal (Figure 4). Figure 4 Rme Mtr Cnnectin Diagram

10 Pin Allcatin "PWM Mde" Pin Digital 4 Digital 5 Digital 6 Digital 7 Functin Mtr 1 Directin cntrl Mtr 1 PWM cntrl Mtr 2 PWM cntrl Mtr 2 Directin cntrl "PLL Mde" Pin Digital 4 Digital 5 Digital 6 Digital 7 Functin Mtr 1 Enable cntrl Mtr 1 Directin cntrl Mtr 2 Directin cntrl Mtr 2 Enable cntrl PWM Cntrl Mde

11 Figure 5 PWM Mtr Cntrl Pin Allcatin The PWM DC mtr cntrl is implemented by manipulating tw digital IO pins and tw PWM pins. As illustrated in the diagram abve (Figure 5), Pin 4,7 (7,8 fr ld Rme versin) are mtr directin cntrl pins, Pin 5,6 (6,9 fr ld Rme versin) are mtr speed cntrl pins. Fr previus Rme bard, the pins used t cntrl the mtr is Pin 7,8 (Directin), Pin 6,9 (Speed). Yu can find the infrmatin at the right side f the Mtr Cntrl Pin Jumpers. Sample Cde //Standard PWM DC cntrl int E1 = 5; int E2 = 6; int M1 = 4; int M2 = 7; //M1 Speed Cntrl //M2 Speed Cntrl //M1 Directin Cntrl //M1 Directin Cntrl ///Fr previus Rme, please use these pins. //int E1 = 6; //M1 Speed Cntrl //int E2 = 9; //M2 Speed Cntrl //int M1 = 7; //M1 Directin Cntrl //int M2 = 8; //M1 Directin Cntrl vid stp(vid) digitalwrite(e1,low); digitalwrite(e2,low); vid advance(char a,char b) analgwrite (E1,a); digitalwrite(m1,high); analgwrite (E2,b); digitalwrite(m2,high); vid back_ff (char a,char b) analgwrite (E1,a); digitalwrite(m1,low); analgwrite (E2,b); digitalwrite(m2,low); vid turn_l (char a,char b) analgwrite (E1,a); //Stp //Mve frward //PWM Speed Cntrl //Mve backward //Turn Left

12 digitalwrite(m1,low); analgwrite (E2,b); digitalwrite(m2,high); vid turn_r (char a,char b) //Turn Right analgwrite (E1,a); digitalwrite(m1,high); analgwrite (E2,b); digitalwrite(m2,low); vid setup(vid) int i; fr(i=6;i<=9;i++) pinmde(i, OUTPUT); Serial.begin(19200); //Set Baud Rate vid lp(vid) char val = Serial.read(); if(val!=-1) switch(val) case 'w'://mve Frward advance (100,100); //PWM Speed Cntrl break; case 's'://mve Backward back_ff (100,100); break; case 'a'://turn Left turn_l (100,100); break; case 'd'://turn Right turn_r (100,100); break; delay(40); else stp();

13 PLL Cntrl Mde The Rme als supprt PLLPhase lcked lp cntrl mde. Sample Cde //Standard DLL Speed cntrl int E1 = 4; int E2 = 7; int M1 = 5; int M2 = 6; //M1 Speed Cntrl //M2 Speed Cntrl //M1 Directin Cntrl //M1 Directin Cntrl

14 ///Fr previus Rme, please use these pins. //int E1 = 6; //M1 Speed Cntrl //int E2 = 9; //M2 Speed Cntrl //int M1 = 7; //M1 Directin Cntrl //int M2 = 8; //M1 Directin Cntrl //When m1p/m2p is 127, it stps the mtr //when m1p/m2p is 255, it gives the maximum speed fr ne directin //When m1p/m2p is 0, it gives the maximum speed fr reverse directin vid DriveMtrP(byte m1p, byte m2p)//drive Mtr Pwer Mde digitalwrite(e1, HIGH); analgwrite(m1, (m1p)); digitalwrite(e2, HIGH); analgwrite(m2, (m2p)); vid setup(vid) int i; fr(i=6;i<=9;i++) pinmde(i, OUTPUT); Serial.begin(19200); //Set Baud Rate vid lp(vid) char val = Serial.read(); if(val!=-1) switch(val) case 'w'://mve Frward DriveMtrP(0xff,0xff); break; case 'x'://mve Backward DriveMtrP(0x00,0x00);; break; case 's'://stp DriveMtrP(0x7f,0x7f); break;

15 delay(40);

Getting started with Android

Getting started with Android Getting started with Andrid Befre we begin, there is a prerequisite, which is t plug the Andrid device int yur cmputer, and lad the drivers fr the OS. In writing this article, I was using Windws XP, 7

More information

Deployment Overview (Installation):

Deployment Overview (Installation): Cntents Deplyment Overview (Installatin):... 2 Installing Minr Updates:... 2 Dwnlading the installatin and latest update files:... 2 Installing the sftware:... 3 Uninstalling the sftware:... 3 Lgging int

More information

SITE APPLICATIONS USER GUIDE:

SITE APPLICATIONS USER GUIDE: SITE APPLICATIONS USER GUIDE: CPCONTROLLER, CCENGINE, SYNC, TPORT, CCTERMINAL Cpyright 2013 Triple E Technlgies. All rights reserved. Site Applicatins User Guide INTRODUCTION The applicatins described

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

MPDS Configuration Sheet Windows 2000

MPDS Configuration Sheet Windows 2000 MPDS Cnfiguratin Sheet Windws 2000 Cnnecting t the Internet via a Mbile Packet Data service terminal Setting up a Windws 2000 mdem device The PC cmmunicates with the MPDS terminal as if it were a mdem.

More information

Hardware components. Typical connections and data flow. Student 3 page 1: Low Merit

Hardware components. Typical connections and data flow. Student 3 page 1: Low Merit Student 3 page 1: Lw Merit Hardware cmpnents Extensin cards Descriptin, Hw purpse determines cnnectins Extensin cards extend the capacity f the mtherbard by allwing a circuit bard r card t cnnect t it

More information

Wireless Light-Level Monitoring

Wireless Light-Level Monitoring Wireless Light-Level Mnitring ILT1000 ILT1000 Applicatin Nte Wireless Light-Level Mnitring 1 Wireless Light-Level Mnitring ILT1000 The affrdability, accessibility, and ease f use f wireless technlgy cmbined

More information

SBClient and Microsoft Windows Terminal Server (Including Citrix Server)

SBClient and Microsoft Windows Terminal Server (Including Citrix Server) SBClient and Micrsft Windws Terminal Server (Including Citrix Server) Cntents 1. Intrductin 2. SBClient Cmpatibility Infrmatin 3. SBClient Terminal Server Installatin Instructins 4. Reslving Perfrmance

More information

Manual. Adapter OBD v2. Software version: NEVO-4.0.4.0. DiegoG3-3.0.8.0. Full compatibility with OBD Adapter v2 2.0B

Manual. Adapter OBD v2. Software version: NEVO-4.0.4.0. DiegoG3-3.0.8.0. Full compatibility with OBD Adapter v2 2.0B Manual Adapter OBD v2 Sftware versin: NEVO-4.0.4.0 DiegG3-3.0.8.0 Full cmpatibility with OBD Adapter v2 2.0B Page 2 / 7 1 Descriptin The OBD Adapter v2 enables cmmunicatin between NEVO r Dieg gas injectin

More information

Otomasyon, Danışmanlık Ltd. Şti. INDILOAD DATACARD M AN UAL. Antetli03.doc / Page 9 of 1. Kibele Hedef mükemmele ulasmaksa.

Otomasyon, Danışmanlık Ltd. Şti. INDILOAD DATACARD M AN UAL. Antetli03.doc / Page 9 of 1. Kibele Hedef mükemmele ulasmaksa. Otmasyn, Danışmanlık Ltd. Şti. INDILOAD DATACARD M AN UAL Antetli03.dc / Page 9 f 1 Otmasyn, Danışmanlık Ltd. Şti. Chapter 1 : General Chapter 2 : Cnnectins Chapter 3 : Operatin Chapter 4 : Technical sheet

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions FOCUS Service Management Sftware Versin 8.5 fr CunterPint Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins will

More information

Basic Guide line for The Sportident system

Basic Guide line for The Sportident system Basic Guide line fr The Sprtident system SI-statins BSF7-8, Master statins BSM7, SI-Cnfig versin 1.4.1, 2006-10-24-1 - Index This guide line... 3 General... 3 Knwledge... 3 Mre infrmatin... 3 System requirements...

More information

1 ps/2 style keyboard (a computer keyboard with the small round connector that plugs into the computer)

1 ps/2 style keyboard (a computer keyboard with the small round connector that plugs into the computer) Arcade Legends Service Prcedures Arcade legends machines as well as the riginal Ultimate Arcade machines are all based n ff the shelf Pentium 3 cmputer cmpnents. With this in mind mst prblems with these

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

ELEC 204 Digital System Design LABORATORY MANUAL

ELEC 204 Digital System Design LABORATORY MANUAL ELEC 204 Digital System Design LABORATORY MANUAL : Design and Implementatin f a 3-bit Up/Dwn Jhnsn Cunter Cllege f Engineering Kç University Imprtant Nte: In rder t effectively utilize the labratry sessins,

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

PBX Remote Line Extension using Mediatrix 4104 and 1204 June 22, 2011

PBX Remote Line Extension using Mediatrix 4104 and 1204 June 22, 2011 PBX Remte Line Extensin using Mediatrix 4104 and 1204 June 22, 2011 Prprietary 2011 Media5 Crpratin Table f Cntents Intrductin... 3 Applicatin Scenari... 3 Running the Unit Manager Netwrk Sftware... 4

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and

Copyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com/ We have attempted to make these documents complete, accurate, and ii Cpyright 2013, SafeNet, Inc. All rights reserved. http://www.safenet-inc.cm/ We have attempted t make these dcuments cmplete, accurate, and useful, but we cannt guarantee them t be perfect. When we

More information

Knowledge Base Article

Knowledge Base Article Knwledge Base Article Crystal Matrix Interface Cmparisn TCP/IP vs. SDK Cpyright 2008-2012, ISONAS Security Systems All rights reserved Table f Cntents 1: INTRODUCTION... 3 1.1: TCP/IP INTERFACE OVERVIEW:...

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

Configuring an Email Client for your Hosting Support POP/IMAP mailbox

Configuring an Email Client for your Hosting Support POP/IMAP mailbox Cnfiguring an Email Client fr yur Hsting Supprt POP/IMAP mailbx This article lists the email settings and prt numbers fr pp and imap cnfiguratins, as well as fr SSL. It cntains instructins fr setting up

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

Dial Backup for Dedicated T1 Circuits using the ATLAS

Dial Backup for Dedicated T1 Circuits using the ATLAS Article ID: 1449 Q&A Dial Backup fr Dedicated T1 Circuits using the ATLAS Q: Dial Backup fr Dedicated T1 Circuits using the ATLAS A: Intrductin This technical supprt nte describes hw t cnfigure the ATLAS

More information

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015

User Guide. Excel Data Management Pack (EDM-Pack) OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES. Date: December 2015 PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) Excel Data Management Pack (EDM-Pack) Date: December 2015 Dcument Versin: 1.0.0 Abstract The EDM-Pack includes a general-purpse Data Surce

More information

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel

Traffic monitoring on ProCurve switches with sflow and InMon Traffic Sentinel An HP PrCurve Netwrking Applicatin Nte Traffic mnitring n PrCurve switches with sflw and InMn Traffic Sentinel Cntents 1. Intrductin... 3 2. Prerequisites... 3 3. Netwrk diagram... 3 4. sflw cnfiguratin

More information

How To Set Up Call Hme On A Brcade Data Center Powerbook

How To Set Up Call Hme On A Brcade Data Center Powerbook TECH NOTE: BROCADE DCFM CALL HOME CAPABILITY The Call Hme event ntificatin capability allws a user t cnfigure a Brcade Data Center Fabric Manager (DCFM ) Enterprise Server t autmatically send an e-mail

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

Aladdin HASP SRM Key Problem Resolution

Aladdin HASP SRM Key Problem Resolution Aladdin HASP SRM Key Prblem Reslutin Installatin flwchart fr EmbrideryStudi and DecStudi e1.5 Discnnect frm the Internet and disable all anti-virus and firewall applicatins. Unplug all dngles. Insert nly

More information

DTU Data Transfer Utilities Software User manual

DTU Data Transfer Utilities Software User manual DTU Data Transfer Utilities Sftware User manual Ft. Atkinsn, Wiscnsin USA Panningen, Nederland www.digi-star.cm D3912-GB Rev A Sept 11 Table f cntents TABLE OF CONTENTS DTU Sftware general... 1 Minimum

More information

Telelink 6. Installation Manual

Telelink 6. Installation Manual Telelink 6 Installatin Manual Table f cntents 1. SYSTEM REQUIREMENTS... 3 1.1. Hardware Requirements... 3 1.2. Sftware Requirements... 3 1.2.1. Platfrm... 3 1.2.1.1. Supprted Operating Systems... 3 1.2.1.2.

More information

CenterPoint Accounting for Agriculture Network (Domain) Installation Instructions

CenterPoint Accounting for Agriculture Network (Domain) Installation Instructions CenterPint Accunting fr Agriculture Netwrk (Dmain) Installatin Instructins Dcument # Prduct Mdule Categry 2257 CenterPint CenterPint Installatin This dcument describes the dmain netwrk installatin prcess

More information

Diagnosis and Troubleshooting

Diagnosis and Troubleshooting Diagnsis and Trubleshting DataDirect Cnnect Series ODBC Drivers Intrductin This paper discusses the diagnstic tls that are available t cnfigure and trublesht yur ODBC envirnment and prvides a trubleshting

More information

UMC32+ DIY USB-MIDI Controller USER MANUAL. Firmware v3.1.0 / Hardware v1.1. 2008 2011 Hale Microsystems LLC, All Rights Reserved.

UMC32+ DIY USB-MIDI Controller USER MANUAL. Firmware v3.1.0 / Hardware v1.1. 2008 2011 Hale Microsystems LLC, All Rights Reserved. UMC32+ DIY USB-MIDI Cntrller USER MANUAL Firmware v3.1.0 / Hardware v1.1 2008 2011 Hale Micrsystems LLC, All Rights Reserved. Prduct Descriptin The UMC32+ is an OEM/DIY prduct that allws Electrnic Musicians,

More information

Tech Notes Promise RAID

Tech Notes Promise RAID Tech Ntes Prmise RAID 03/05/ Purpse: T increase familiarity with the Prmise RAID systems in bth Windws Based and DOS based sftware, including the crrect methd fr rebuilding arrays, crrecting drive errrs,

More information

FINRA Regulation Filing Application Batch Submissions

FINRA Regulation Filing Application Batch Submissions FINRA Regulatin Filing Applicatin Batch Submissins Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 FTP Access t FINRA... 2 FTP Accunt n FINRA s

More information

TaskCentre v4.5 Send Message (SMTP) Tool White Paper

TaskCentre v4.5 Send Message (SMTP) Tool White Paper TaskCentre v4.5 Send Message (SMTP) Tl White Paper Dcument Number: PD500-03-17-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 GLOBAL CONFIGURATION

More information

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2.

Readme File. Purpose. Introduction to Data Integration Management. Oracle s Hyperion Data Integration Management Release 9.2. Oracle s Hyperin Data Integratin Management Release 9.2.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 Intrductin t Data Integratin Management... 1 Data Integratin Management Adapters...

More information

FAQs for Webroot SecureAnywhere Identity Shield

FAQs for Webroot SecureAnywhere Identity Shield FAQs fr Webrt SecureAnywhere Identity Shield Table f Cntents General Questins...2 Why is the bank ffering Webrt SecureAnywhere Identity Shield?... 2 What des it prtect?... 2 Wh is Webrt?... 2 Is the Webrt

More information

Business Digital Voice Site Services - Phone & User Assignments

Business Digital Voice Site Services - Phone & User Assignments Feature Overview The Phnes and Users must be assigned befre setting up ther cmpnents f Business Digital Vice. The system is designed t allw custmers t quickly setup and mdify phne assignments in real time

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Customers FAQs for Webroot SecureAnywhere Identity Shield

Customers FAQs for Webroot SecureAnywhere Identity Shield Custmers FAQs fr Webrt SecureAnywhere Identity Shield Table f Cntents General Questins...2 Why is the bank ffering Webrt SecureAnywhere sftware?... 2 What des it prtect?... 2 Wh is Webrt?... 2 Is Webrt

More information

Chapter - 3. Cable Connections

Chapter - 3. Cable Connections Chapter - 3 Cable Cnnectins One bradband alternative is thrugh cable TV, where yur Internet cnnectin is delivered t yur hme thrugh yur televisin cable. Many cable prviders wn't qute yu an exact speed,

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

ATL: Atlas Transformation Language. ATL Installation Guide

ATL: Atlas Transformation Language. ATL Installation Guide ATL: Atlas Transfrmatin Language ATL Installatin Guide - versin 0.1 - Nvember 2005 by ATLAS grup LINA & INRIA Nantes Cntent 1 Intrductin... 3 2 Installing ADT frm binaries... 3 2.1 Installing Eclipse and

More information

edoc Lite Recruitment Guidelines

edoc Lite Recruitment Guidelines edc Lite Recruitment Guidelines Intrductin OneStart & the Academic Psitin Search Channel edc Lite Ruting and Wrkgrups Ruting Actin List Ruting Cntrls Wrkgrups Dcument Search edc Lite Dcuments Vacancy Ntice

More information

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme

Readme File. Purpose. What is Translation Manager 9.3.1? Hyperion Translation Manager Release 9.3.1 Readme Hyperin Translatin Manager Release 9.3.1 Readme Readme File This file cntains the fllwing sectins: Purpse... 1 What is Translatin Manager 9.3.1?... 1 Cmpatible Sftware... 2 Supprted Internatinal Operating

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Clud Extender Installatin Guide Cpyright 2012 Fiberlink Cmmunicatins Crpratin. All rights reserved. Infrmatin in this dcument is subject t change withut ntice. The sftware described in this dcument

More information

Control4 Driver for JVC D-ILA Projectors

Control4 Driver for JVC D-ILA Projectors www.t4cntrl.cm T4Cntrl 1 Cntrl4 Driver fr JVC D-ILA Prjectrs Versin: 1.1.0 Filename: prjectr_jvc-dila.c4i Release date: 02/27/2014 Intrductin This driver enables IP cntrl f wide range f JVC prjectrs with

More information

Creating automated reports using VBS AN 44

Creating automated reports using VBS AN 44 Creating autmated reprts using VBS AN 44 Applicatin Nte t the KLIPPEL R&D and QC SYSTEM Publishing measured results is imprtant t custmers and clients. While the KLIPPEL database cntains all infrmatin

More information

InfiniTV 4 Installation Instructions

InfiniTV 4 Installation Instructions InfiniTV 4 Installatin Instructins 1. Obtain a CableCARD frm yur cable TV service prvider 1. Call yur cable TV service prvider and tell them yu need a multi-stream CableCARD (M-Card) fr a Cetn InfiniTV

More information

Burner Troubleshooting Guide

Burner Troubleshooting Guide IMMEDIATE RESPONSE TECHNOLOGIES, INC. Burner Trubleshting Guide Flash Water Heater (all standard types) Created By: Stefan Swan Infrmatin in this guide was deemed technically accurate at the time f printing.

More information

Ecommerce anyone? Options for setting up online purchasing on your website.

Ecommerce anyone? Options for setting up online purchasing on your website. Ecmmerce anyne? Optins fr setting up nline purchasing n yur website. Let s face it; shpping nline is easy and cnvenient and cnsumers lve it. Yu can buy almst anything nline and with a few clicks f yur

More information

HS2/Bx. Operating Instructions

HS2/Bx. Operating Instructions Operating Instructins Page 1/6 HS2/Bx Bster fr 1/2/4 Valves Operating Instructins Fast Switching f 1..4 Magnet Valves Simple Supply with 24 VDC Munts n 35 mm DIN Rail Lw Cst Device Cnnectins n Spring Frce

More information

Serv-U Distributed Architecture Guide

Serv-U Distributed Architecture Guide Serv-U Distributed Architecture Guide Hrizntal Scaling and Applicatin Tiering fr High Availability, Security, and Perfrmance Serv-U Distributed Architecture Guide v14.0.1.0 Page 1 f 16 Intrductin Serv-U

More information

HP Connected Backup Online Help. Version 8.7.1 04 October 2012

HP Connected Backup Online Help. Version 8.7.1 04 October 2012 HP Cnnected Backup Online Help Versin 8.7.1 04 Octber 2012 Legal Ntices Warranty The nly warranties fr Hewlett-Packard prducts and services are set frth in the express statements accmpanying such prducts

More information

Best Practice - Pentaho BA for High Availability

Best Practice - Pentaho BA for High Availability Best Practice - Pentah BA fr High Availability This page intentinally left blank. Cntents Overview... 1 Pentah Server High Availability Intrductin... 2 Prerequisites... 3 Pint Each Server t Same Database

More information

Phone support is available if you have any questions or problems with the NASP PRO software during your tournament.

Phone support is available if you have any questions or problems with the NASP PRO software during your tournament. NASP Pr Turnament Instructins Updated 11/4/13 - NASP Pr Turnament Step by Step It is HIGHLY recmmended that yu read and fllw these instructins. Als, print these instructins and have them available at yur

More information

AP Capstone Digital Portfolio - Teacher User Guide

AP Capstone Digital Portfolio - Teacher User Guide AP Capstne Digital Prtfli - Teacher User Guide Digital Prtfli Access and Classrm Setup... 2 Initial Lgin New AP Capstne Teachers...2 Initial Lgin Prir Year AP Capstne Teachers...2 Set up Yur AP Capstne

More information

A Beginner s Guide to Building Virtual Web Servers

A Beginner s Guide to Building Virtual Web Servers A Beginner s Guide t Building Virtual Web Servers Cntents Intrductin... 1 Why set up a web server?... 2 Installing Ubuntu 13.04... 2 Netwrk Set Up... 3 Installing Guest Additins... 4 Updating and Upgrading

More information

Application Note: 202

Application Note: 202 Applicatin Nte: 202 MDK-ARM Cmpiler Optimizatins Getting the Best Optimized Cde fr yur Embedded Applicatin Abstract This dcument examines the ARM Cmpilatin Tls, as used inside the Keil MDK-ARM (Micrcntrller

More information

iphone Mobile Application Guide Version 2.2.2

iphone Mobile Application Guide Version 2.2.2 iphne Mbile Applicatin Guide Versin 2.2.2 March 26, 2014 Fr the latest update, please visit ur website: www.frte.net/mbile Frte Payment Systems, Inc. 500 West Bethany, Suite 200 Allen, Texas 75013 (800)

More information

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper

TaskCentre v4.5 MS SQL Server Trigger Tool White Paper TaskCentre v4.5 MS SQL Server Trigger Tl White Paper Dcument Number: PD500-03-02-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT... 1 TRADEMARKS... 1 INTRODUCTION... 2 Overview... 2 Features...

More information

Ten Steps for an Easy Install of the eg Enterprise Suite

Ten Steps for an Easy Install of the eg Enterprise Suite Ten Steps fr an Easy Install f the eg Enterprise Suite (Acquire, Evaluate, and be mre Efficient!) Step 1: Dwnlad the eg Sftware; verify hardware and perating system pre-requisites Step 2: Obtain a valid

More information

Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool

Configuring BMC AREA LDAP Using AD domain credentials for the BMC Windows User Tool Cnfiguring BMC AREA LDAP Using AD dmain credentials fr the BMC Windws User Tl Versin 1.0 Cnfiguring the BMC AREA LDAP Plugin fr Dmain Username and Passwrds Intrductin...3 LDAP Basics...4 What is LDAP and

More information

IntesisBox ME-AC-KNX-1i v1.0

IntesisBox ME-AC-KNX-1i v1.0 IntesisBx ME-AC-KNX-1i v1.0 User's Manual Issue Date: 06/2013 r2.1 eng IntesisBx KNX Mitsubishi Electric A.C. Intesis Sftware S.L. All Rights Reserved. Infrmatin in this dcument is subject t change withut

More information

Regions File Transmission

Regions File Transmission Regins File Transmissin Getting Started with FTPS Regins Bank Member FDIC Revised 022113 It s time t expect mre. Table f Cntents Getting Started with FTPS Setting Up FTPS Cnnectin in FTP Client 3 4 9 Regins

More information

Release Notes. Intellex 4.3 Patch 7 update Network Client Patch 7 update. Applicable Software

Release Notes. Intellex 4.3 Patch 7 update Network Client Patch 7 update. Applicable Software Release Ntes Intellex 4.3 Patch 7 update Netwrk Client Patch 7 update Applicable Sftware Intellex versin number: 4.31.57.99 Netwrk Client versin number: 4.31.57.99 Nte In case f discrepancy, the infrmatin

More information

CSAT Account Management

CSAT Account Management CSAT Accunt Management User Guide March 2011 Versin 2.1 U.S. Department f Hmeland Security 1 CSAT Accunt Management User Guide Table f Cntents 1. Overview... 1 1.1 CSAT User Rles... 1 1.2 When t Update

More information

Remote Desktop Tutorial. By: Virginia Ginny Morris

Remote Desktop Tutorial. By: Virginia Ginny Morris Remte Desktp Tutrial By: Virginia Ginny Mrris 2008 Remte Desktp Tutrial Virginia Ginny Mrris Page 2 Scpe: The fllwing manual shuld accmpany my Remte Desktp Tutrial vide psted n my website http://www.ginnymrris.cm

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

1.0 HOW TO ACCESS THE WEB BASED LEARNING PLATFORM

1.0 HOW TO ACCESS THE WEB BASED LEARNING PLATFORM Web based Learning Platfrm Instructins 1.0 HOW TO ACCESS THE WEB BASED LEARNING PLATFORM In rder t access the sftware prgrams (e.g., ERDAS, ArcMap) needed t cmplete the lab assignments, yu will need t

More information

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later.

1) Update the AccuBuild Program to the latest version Version 9.3.0.3 or later. Certified Payrll XML Exprt As f June 4 th, 2015, The Califrnia Department f Industrial Relatins (DIR) is requiring that all certified payrll reprts be submitted nline using the ecpr system. The ecpr System

More information

Configuring and Monitoring AS400 Servers. eg Enterprise v5.6

Configuring and Monitoring AS400 Servers. eg Enterprise v5.6 Cnfiguring and Mnitring AS400 Servers eg Enterprise v5.6 Restricted Rights Legend The infrmatin cntained in this dcument is cnfidential and subject t change withut ntice. N part f this dcument may be reprduced

More information

Wireless Nurse Calling System Technical Document

Wireless Nurse Calling System Technical Document Wireless Nurse Calling System Technical Dcument Wireless Nurse Calling System Technical Dcument [May 2016] Bangalre, India Please feel free t give feedback thrugh: sales@frbixindia.cm 1 P a g e Wireless

More information

How To Configure A GSM Modem Using HyperTerminal

How To Configure A GSM Modem Using HyperTerminal Handling a cmplex wrld. Hw T Cnfigure A GSM Mdem Using HyperTerminal Intrductin This dcument prvides a brief descriptin f hw t cnfigure a GSM mdem using the Windws HyperTerminal utility. Please cnsult

More information

Lumension Connect: Online Customer Community FAQs

Lumension Connect: Online Customer Community FAQs Lumensin Cnnect: Online Custmer Cmmunity FAQs Cpyright 2009, Lumensin Lumensin Cnnect: Online Custmer Cmmunity FAQs Table f Cntents Lumensin Cnnect:... 1 Online Custmer Cmmunity FAQs... 1 What is Lumensin

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

Sage 100 What s New in 2013. Tracey Brinkman Senior Consultant BKD Technologies tbrinkman@bkd.com

Sage 100 What s New in 2013. Tracey Brinkman Senior Consultant BKD Technologies tbrinkman@bkd.com Sage 100 What s New in 2013 Tracey Brinkman Senir Cnsultant BKD Technlgies tbrinkman@bkd.cm Presenter Tracey Brinkman Senir Cnsultant BKD Technlgies 2013 Overview Glbal Enhancements Accunts Payable Enhancements

More information

GUARD1 /plus. PIPE Utility. User's Manual. Version 2.0

GUARD1 /plus. PIPE Utility. User's Manual. Version 2.0 GUARD1 /plus PIPE Utility User's Manual Versin 2.0 30700 Bainbridge Rad Sln, Ohi 44139 Phne 216-595-0890 Fax 216-595-0991 supprt@guard1.cm www.guard1.cm 2010 TimeKeeping Systems, Inc. GUARD1 PLUS and THE

More information

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public

Intel Hybrid Cloud Management Portal Update FAQ. Audience: Public Intel Hybrid Clud Management Prtal Update FAQ Audience: Public Purpse: Prepare fr the launch f the Intel Hybrid Clud Platfrm multi-user/multi-tier update Versin: Final FAQs What s new in the Intel Hybrid

More information

IntesisBox TO-RC-KNX-1i v1.1

IntesisBox TO-RC-KNX-1i v1.1 IntesisBx TO-RC-KNX-1i v1.1 User's Manual Issue Date: 01/2014 r1 eng IntesisBx KNX Tshiba AC Digital Inverter & VRF lines Intesis Sftware S.L. 2014 All Rights Reserved. Infrmatin in this dcument is subject

More information

Introduction LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE. 2015 Savision B.V. savision.com All rights reserved.

Introduction LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE. 2015 Savision B.V. savision.com All rights reserved. Rev 7.5.0 Intrductin 2 LIVE MAPS UNITY PORTAL / INSTALLATION GUIDE 2015 Savisin B.V. savisin.cm All rights reserved. This manual, as well as the sftware described in it, is furnished under license and

More information

Prototype of EN 301 549 Decision tree Loïc Martínez Normand. Universidad Politécnica de Madrid. loic@fi.upm.es

Prototype of EN 301 549 Decision tree Loïc Martínez Normand. Universidad Politécnica de Madrid. loic@fi.upm.es Prttype f EN 301 549 Decisin tree Lïc Martínez Nrmand. Universidad Plitécnica de Madrid. lic@fi.upm.es 1 Intrductin EN 301 549 cntains accessibility requirements that can be applied t any type f ICT prduct

More information

CallRex 4.2 Installation Guide

CallRex 4.2 Installation Guide CallRex 4.2 Installatin Guide This dcument describes hw t install CallRex 4.2. It cvers the fllwing: CallRex 4.2 Cmpnents. Server Prerequisites. Perfrming the Installatin. Changing the Accunt Used by CallRex

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

Tips & Tricks. Table of Contents. Browser Update - WebEx Plugin. Updated Global Access Numbers

Tips & Tricks. Table of Contents. Browser Update - WebEx Plugin. Updated Global Access Numbers Tips & Tricks Table f Cntents Brwser Update - WebEx Plugin... 1 Updated Glbal Access Numbers... 1 WebEx Prfile Settings (Time zne, Email )... 2 Hsting a successful WebEx call with Vide... 2 Using the WebEx

More information

User Manual Brainloop Outlook Add-In. Version 3.4

User Manual Brainloop Outlook Add-In. Version 3.4 User Manual Brainlp Outlk Add-In Versin 3.4 Cntent 1. Summary... 3 2. Release Ntes... 3 2.1 Prerequisites... 3 2.2 Knwn Restrictins... 4 3. Installatin and Cnfiguratin... 4 3.1 The installatin prgram...

More information

Fermilab Time & Labor Desktop Computer Requirements

Fermilab Time & Labor Desktop Computer Requirements Fermilab Time & Labr Desktp Cmputer Requirements Fermilab s new electrnic time and labr reprting (FTL) system utilizes the Wrkfrce Central prduct frm Krns. This system is accessed using a web brwser utilizing

More information

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server

Instructions for Configuring a SAFARI Montage Managed Home Access Expansion Server Instructins fr Cnfiguring a SAFARI Mntage Managed Hme Access Expansin Server ~ Please read these instructins in their entirety befre yu begin. ~ These instructins explain hw t add a SAFARI Mntage Managed

More information

Junos Pulse Instructions for Windows and Mac OS X

Junos Pulse Instructions for Windows and Mac OS X Juns Pulse Instructins fr Windws and Mac OS X When yu pen the Juns client fr the first time yu get the fllwing screen. This screen shws yu have n cnnectins. Create a new cnnectin by clicking n the + icn.

More information

Excel Contact Reports

Excel Contact Reports Excel Cntact Reprts v.1.0 Anther efficient and affrdable ACT! Add-On by http://www.expnenciel.cm Excel Cntact Reprts User s Manual 2 Table f cntents Purpse f the add-n... 3 Installatin prcedure... 3 The

More information

AT&T U-verse App ios FAQs

AT&T U-verse App ios FAQs Abut the AT&T U-verse App What is AT&T U-verse fr ios? The AT&T U-verse App fr ios is a service that prvides all U-verse subscribers the ability t view their U-verse TV Guide, manage their hme DVR, and

More information

ASUS PC Diagnostics Guide

ASUS PC Diagnostics Guide ASUS PC Diagnstics Guide Mtherbard self-diagnstics is a diagnstic tl designed t test the fllwing n yur cmputer: System Infrmatin. System Devices. System Stress. The System Infrmatin Cllectin detects the

More information

TECHNICAL BULLETIN. Title: Remote Access Via Internet Date: 12/21/2011 Version: 1.1 Product: Hikvision DVR Action Required: Information Only

TECHNICAL BULLETIN. Title: Remote Access Via Internet Date: 12/21/2011 Version: 1.1 Product: Hikvision DVR Action Required: Information Only Title: Remte Access Via Internet Date: 12/21/2011 Versin: 1.1 Prduct: Hikvisin DVR Actin Required: Infrmatin Only The fllwing steps will guide yu thrugh the steps necessary t access yur Hikvisin DVR remtely

More information

Steps to fix the product is not properly fixed issue for international clients.

Steps to fix the product is not properly fixed issue for international clients. Axxya Systems supprt cntact details 1-800-709-2977 ext 9 within US 1-425-999-4350 ext 9 utside f US Email supprt@axxya.cm Technical FAQ -- www.nutritinistpr.cm/help-center/ Steps t fix the prduct is nt

More information

USF Remote Desktop Gateway

USF Remote Desktop Gateway USF Remte Desktp Gateway Fr Hme Cmputers and Laptps Running Windws XP The Remte Desktp Gateway (RDG) allws access t yur USF campus cmputer frm remte lcatins while adding an additinal layer f security t

More information

KronoDesk Migration and Integration Guide Inflectra Corporation

KronoDesk Migration and Integration Guide Inflectra Corporation / KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting

More information

manual Page 1 / 5 effects in an easy good LED strips can be Selection guide applications. 1) Selection (indoors, outdoors) desired number of LEDs

manual Page 1 / 5 effects in an easy good LED strips can be Selection guide applications. 1) Selection (indoors, outdoors) desired number of LEDs Technical instructin Intrductin LED strips are a new generatin f innvative lighting prducts that allw creating spectacular effects in an easy way. LED strips have ther advantages like small dimensins,

More information