<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.doityourselfchristmas.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mikeh65</id>
	<title>doityourselfchristmas.com - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.doityourselfchristmas.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mikeh65"/>
	<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Special:Contributions/Mikeh65"/>
	<updated>2026-04-09T11:57:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12800</id>
		<title>E1.31 Bridge</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12800"/>
		<updated>2018-05-18T03:43:13Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:E1_31Bridge.png|600px]]&lt;br /&gt;
=Disclaimers=&lt;br /&gt;
The standard disclaimers pertaining to the information contained on this wiki page are listed [[Disclaimers | here.]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;THIS WIKI PAGE IS NOT COMPLETE YET AND HAS NOT BEEN CHECKED FOR ERRORS.&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=6 Port E1.31 Bridge Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the 6 Port E1.31 Bridge?==&lt;br /&gt;
The 6-port E1.31 bridge is a device that allows your PC to communicate with a large number of Renard or DMX controllers using regular Ethernet network connections.  It replaces multiple DMX or RS485 dongles with one configurable device that can be mounted in an enclosure in the yard and only requires one Ethernet Cat5 cable (or WIFI) back to your pc or home network.  It allows up to 6 DMX universes or Renard networks to be easily controlled from your sequencing software with a minimum amount of wire from your show pc to your controllers.  The bridge works with all Renard, DMX and LOR (using DMX) controllers.&lt;br /&gt;
&lt;br /&gt;
[[File:E131bridgelayout1.png |800px]]&lt;br /&gt;
&lt;br /&gt;
The 6-port E1.31 bridge is a device that takes in an E1.31 stream from your network and converts (or &#039;bridges&#039;) that to multiple DMX or Renard output streams. E1.31 or sACN (Streaming Architecture for Control Networks) is a method of multiplexing multiple DMX streams over your network using unicast or multicast UDP packets. The 6-port bridge currently supports multicast and unicast streams. Multicast makes it simpler to configure but has drawbacks in very large configurations (10&#039;s of streams). E1.31 can support 63,999 DMX streams or &#039;universes&#039; (64000-&amp;gt;65536 are reserved) so it has a virtually unlimited amount of expansion available.&lt;br /&gt;
&lt;br /&gt;
The 6-port bridge can handle up to six E1.31 universes, each of which get directed to a particular port. By default the bridge is configured to send universe &#039;1&#039; to port number 1, universe &#039;2&#039; to port number 2 and so on but you can assign any of the 64k universe numbers to any port if you wish. The bridge takes in the particular universe stream and either outputs it directly out each port for DMX output or it performs a conversion to Renard protocol. The protocol used depends of course on what you plan to use for controllers on the ports that you have configured. You can configure any mix of DMX and Renard protocols to any port.&lt;br /&gt;
&lt;br /&gt;
The bridge has another feature so that each physical output can be re-wired to support either a &amp;quot;standard&amp;quot; DMX RJ-45 electrical output or a Renard electrical output without resorting to making custom cables to support either. The output of the bridge is always RS-485 in either case. Note that regardless if your Renard controller is running standard Renard/Serial code or Renard/DMX code, the jumpers should always be configured for Renard since the physical interface does not change.&lt;br /&gt;
&lt;br /&gt;
==How does the 6 Port E1.31 Bridge work?==&lt;br /&gt;
&lt;br /&gt;
As mentioned above, the bridge takes in a multicast E1.31 UDP stream, determines which stream belongs to which port (if any) and sends that data out the appropriate port. The E1.31 stream enters the bridge via an Ethernet port on the Wiz820io module and is converted to a serial signal that is sent on to the Propeller microcontroller chip. Your sequencer or streaming tool sends multicast packets with an address of 239.255.&amp;lt;UHB&amp;gt;.&amp;lt;ULB&amp;gt; where UHB is the Universe high byte and LHB is the Universe low byte. As an example, the address for universe &#039;1&#039; would be 239.255.0.1. This is why using multicast addressing can be simpler to configure since this address is always the same for any device using that universe. The disadvantage of using multicast is that the packets are sent to every device on the subnet regardless if they are destined for it or not. This means the receiving device must read in the header for each packet or have the means to block these within hardware. Depending on the device and the number of universes of data sent it can swamp the device and possibly end up causing a loss of data. Note however that this is not an issue for most networks until you get into the dozens of universes so it&#039;s not an issue for most users.&lt;br /&gt;
&lt;br /&gt;
Unicast is another method of sending E1.31 packets. For this method, the IP address used to manage/configure the device is also used for the data packets. In this case, the packets are sent directly to the device instead of being broadcast across the entire subnet.&lt;br /&gt;
&lt;br /&gt;
The Parallax Propeller microcontroller determines if the address matches one of the configured ports universe numbers and if it does, reads in the entire DMX stream and sends them out that particular port either as-is or after conversion to Renard protocol. The Propeller chip is quite powerful, it is essentially eight separate microcontrollers in a single package. These internal processors or COGs as they are called can each run completely different (or the same) code. This allows you to partition different functions to different COGs within your code. For more information on the Propeller, visit the Parallax site.&lt;br /&gt;
&lt;br /&gt;
For the bridge, the COGs are used to support both the multiple input processing as well as the six port output processing.&lt;br /&gt;
&lt;br /&gt;
==E1.31 Networking Basics and Setup==&lt;br /&gt;
For more information about how E1.31 works and how you wire up the IP networking side of an E1.31 Network look at &amp;lt;u&amp;gt;[[E1.31_(Streaming-ACN)_Protocol| E1.31 Protocol]]&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==6 Port E1.31 Bridge Parts==&lt;br /&gt;
To build the E1.31 Bridge, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=158 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[E1.31_Bridge#Power|power supply]] to power the board.  The board can use any 5-24VDC power supply.&lt;br /&gt;
# An [[Enclosures|enclosure]] to mount the finished board in.  Commonly used enclosures include the [[Enclosures#CG-500_.28CableGuard_500_Coax_Demarcation_Enclosure.29|CG-500]], [[Enclosures#CG-1000_.28CableGuard_1000_Coax_Demarcation_Enclosure|CG-1000]] or the [[Enclosures#CG-1500_.28CableGuard_1500_Coax_Demarcation_Enclosure.29|CG-2000]] which are available from several [[Enclosures#Vendors|vendors]]&lt;br /&gt;
&lt;br /&gt;
The BOM parts needed to build the board are:&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&#039;&#039;&#039;Mouser BOM&#039;&#039;&#039;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Part ID&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Mouser PN&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Description&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Qty&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;R1-R3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;291-220-RC &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 220ohms 0.05 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;R4-R9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; 291-120-RC  &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 120ohms 0.05 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;R10-R12&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;291-10K-RC &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 10Kohms 0.05 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;C1-C3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; 140-REA470M1VBK0611P  &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Aluminum Electrolytic Capacitors - Leaded 35V 47uF 20% 6.3x11mm &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;C4-C12&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;581-SA105E104MAR&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Multilayer Ceramic Capacitors MLCC - Leaded 50volts 0.1uF 20% Z5U &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;IC1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;619-P8X32A-D40 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;32-bit Microcontrollers - MCU DIP pkg Propeller Chip &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;IC2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;579-24LC512-I/P &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;EEPROM 64kx8 - 2.5V &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;IC3-IC8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;511-ST485BN &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Buffers &amp;amp; Line Drivers Hi-Spd Lo Pwr Trans &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;IC9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;579-24AA025E48-I/SN &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;EEPROM 2K 256 X 8 1.8V SERIAL EE, IND &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;X1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;520-HCU500-20X &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Crystals 5MHz 20pF &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Wiznet&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;950-WIZ820IO &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Ethernet Modules W5200 &amp;amp; MAG JACK ioPLATFORM MODULE&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;LED1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;604-WP7113GD &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;604-WP7113GD &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;LED2-LED3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;604-WP7113ID &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; Standard LEDs - Through Hole HI EFF RED DIFFUSED  &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;VR1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;580-OKI78SR5/1.5W36C &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;DC/DC Converters 7.5W 24Vin 5Vout1 1.5A SIP Non-Iso &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;VR2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;511-LF33CV &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Low Dropout Regulators - LDO 3.3V 0.5A Positive &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Heatsink&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; 532-577202B00  &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Heat Sinks TO-220 HORIZ/VERT SLIM CHANNEL STYLE &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;S1-S2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;653-B3F-1000 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Tactile Switches 6X6 Flat 4.3mm Btn Force 100g w/o Grd &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;IC Socket 1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;575-199640 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; IC &amp;amp; Component Sockets 40P TIN PIN TIN CONT  &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;IC Socket 2 - IC Socket 8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;575-1104331610003000 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;IC &amp;amp; Component Sockets 8P DIP SOCKET SOCKETS &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;JP1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-826629-3 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 3P SINGLE ROW &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;H1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-826629-4 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 4P SINGLE ROW &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Wiznet 1x6 Header&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;517-9601066202AR &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 6P STR SR BDMNT SKT 3.0MM TAIL/7.1MMBODY &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;2x3 Output Selector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; 855-M20-9980345 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 03+03 DIL VERTICAL PIN HEADER GOLD HT &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;TB1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-2828372 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fixed Terminal Blocks 5.08MM PCB MOUNT 2P &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;J1-J6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-5556416-1 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-5556416-1 &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Output Shunts&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;517-9691020000DA &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 2.54MM SHUNT &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;25&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=25f7a37aed  Click here for Mouser Direct Project BOM]&lt;br /&gt;
or&lt;br /&gt;
The BOM is also available at a discount in a kit that includes the PCB from [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=157 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the 6 Port E1.31 Bridge==&lt;br /&gt;
&lt;br /&gt;
The 6 Port E1.31 Bridge requires a fair bit of soldering so take your time and ensure you&lt;br /&gt;
install the components in the correct orientation when required. Start by sorting&lt;br /&gt;
the components by type and values. Look over the PCB before starting noting the&lt;br /&gt;
location of the various components. Follow the standard procedure of installing&lt;br /&gt;
the lowest profile parts first and ending up with the tallest.  You can click on any photo to see a larger version of the image.&lt;br /&gt;
&lt;br /&gt;
[[File:E1_31Bridge.png|600px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; Begin by inspecting the PCBs to look for any defects such as cracks or breaks.  The holes on the board should be open on both sides.  Then inspect and sort out the various parts for the boards.&lt;br /&gt;
#:[[File:E131bridgepcb.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  &#039;&#039;&#039;README: DO NOT install the MAC address IC unless you have a Prop Plug to load version 4.02 or greater.&#039;&#039;&#039; Install the MAC IC (IC9), this is the only surface mount IC. It is optional if you are not comfortable with soldering surface mount ICs.  The firmware will generate a random MAC ID if the IC is not installed.  The IC is polarized and the IC must be installed so that the dot on the package aligns with the dot on the pcb, the lower right side of the pad.  For hints on how to solder a SMT device look [https://www.sparkfun.com/datasheets/Prototyping/General/SolderingBasics.pdf here].&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-1.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the nine 0.1uF (100nF) capacitors C4-C12.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-2.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the three 220 Ohm resistors (red, red, brown, gold)  R1-R3.  The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-3.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the six 120 Ohm resistors (brown, red, brown, gold)  R4-R9. The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-4.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the three 10K Ohm resistors (brown, black, orange, gold) R10-R12 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-5.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the 5Mhz Crystal X1.  The crystal is not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-6.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the two push button switches S1-S2.  The switches are polarized and will only fit on the board one way.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-7.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the seven 8 pin IC sockets.  The sockets are polarized and have a notch on one end.  It should be mounted so that the notch is oriented to the left and matching the marking on the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-8.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the one 40 pin socket. The sockets are polarized and have a notch on one end.  It should be mounted so that the notch is oriented to the right and matching the marking on the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-8.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the green ACT LED (LED1). Note that the LED is polarized and the long lead should face towards the top of the board. Note: silkscreen shows &amp;quot;FLAT&amp;quot; side of the LED, this can also be used to check for proper orientation&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the two red STATUS and POWER LEDs (LED2-LED3). Note that the LED is polarized and the long lead should face towards the top of the board. Note: silkscreen shows &amp;quot;FLAT&amp;quot; side of the LED, this can also be used to check for proper orientation&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the 3.3V Regulator VR2 with the heat sink.  The voltage regulator is polarized and goes only one way.  Gently bend the leads of the regulator at the location on the leads where it changes size  down at a 90 degree angle towards the flat side of the regulator.  Apply  thermal grease to the flat heat sink side of the regulator and the heatsink and fasten it to the pcb using a #4 screw and nut.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the 3 Pin headers JP1.  The short end of the header is soldered to the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the 4 Pin headers H1.  The short end of the header is soldered to the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the two WizNet 1x6 pin headers.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the twelve 2x3 output selector pin headers.  The short end of the headers are soldered to the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-14.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the power terminal block TB1.  Install so that the wire openings face the edge of the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the three 47uF Capacitors C1-C3.  The capacitors are polarized and can only be installed one way. The side of the capacitor will have a stripe on the negative side. The long lead is the positive side, and it goes in the hole marked with a + to the right.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the DC-DC Converter VR1.  The voltage regulator is polarized and must only be installed one way. The flat side of the voltage regulator must be mounted towards the bottom of the board, aligning with the stripe on the pcb.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the six RJ45 jacks J1-J6.  The jacks are polarized and they have to be installed with the correct orientation. Gently install all 8 pins into the holes and them firmly press down on the socket to seat the plastic pins in the holes in the PCB. &lt;br /&gt;
#:[[File:E131Bridge1-3-Step-18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the six RT485BN in IC3-IC8 with the notches facing the left edge with the power terminal block.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the EEPROM in IC2 with the notch facing the left edge with the power terminal block.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the Propeller in IC1 with the notch facing the WizNet adapter to the right.&lt;br /&gt;
#:[[File:E131Bridge1-3-Step-21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt;  Install the WizNet adapter with the &#039;&#039;&#039;RJ45 socket facing the Propeller IC.&#039;&#039;&#039; &lt;br /&gt;
#:[[File:E131Bridge1-3-Step-22.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; On initial power up and test perform a Hard Reset to initialize the settings. To do a hard reset  Press the MODE and RESET buttons at the same time and hold down the MODE button while you release the RESET button.  The ACT LED will flash a status code, after the ACT LED flashes 10 times, release the MODE button.  This will wipe all device configuration settings and reset them to the default factory settings and will force the generation of a new random [http://en.wikipedia.org/wiki/MAC_address MAC ID] for the unit if the MAC ID chip (IC 9) is not installed on the board.&lt;br /&gt;
#:[[File:E1 31Bridge Reset.png|300px]]&lt;br /&gt;
&lt;br /&gt;
H2 will be unpopulated as it is for future expansion.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Congratulations! That completes the construction of the 6 Port E1.31 Bridge!&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
There are two types of jumper groups on the E1.31 bridge. The first is to set the input voltage and the others to set the desired DMX or Renard physical output.&lt;br /&gt;
&lt;br /&gt;
====Power Jumper - JP1====&lt;br /&gt;
This jumper is used if you are supplying either a well regulated +5v or unregulated +7-24v. If you apply +5vdc to the terminal block, you should put the jumper on the &amp;quot;EXT&amp;quot; setting (indicating you are getting 5v externally). If you apply +7-24vdc, you should put the jumper on the &amp;quot;INT&amp;quot; setting (indicating you are getting 5v internally via the 5v regulator).&lt;br /&gt;
&lt;br /&gt;
You &#039;&#039;&#039;MUST&#039;&#039;&#039; ensure you have this jumper set correctly if you are using voltages greater than 5v as it may (and probably will) cause permanent damage to some components on the board. The Propeller chip uses 3.3v and would be fine but the RS-485 transceivers are 5v devices and would be probably be damaged.&lt;br /&gt;
&lt;br /&gt;
====Output Configuration Jumpers====&lt;br /&gt;
[[file:E1_31Bridge_REN.png |400px]]&lt;br /&gt;
[[File:E1_31Bridge_REN_Zoom.png |300px]]&lt;br /&gt;
&lt;br /&gt;
Each port has a set of four separate jumpers. These jumpers set the wiring configuration on their respective output jacks. If you want a DMX wiring output, you need to put all four jumpers to the &amp;quot;DMX&amp;quot; side. If you want a Renard wiring output, you need to put all four jumpers to the &amp;quot;REN&amp;quot; side. &#039;&#039;&#039;It is important that all four jumpers are in the same position for that port. Note that the protocol for the port is different than the wired output.  You must set the DMX or Renard output protocol via the Bridge configuration settings.&#039;&#039;&#039;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;; cellpadding=&amp;quot;10&amp;quot; style=&amp;quot;text-align: center; background:black; color:white&amp;quot;&lt;br /&gt;
|+ RJ45 Pin Assignments&lt;br /&gt;
|colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Output Jumper Settings&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;Pin #&#039;&#039;&#039;&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| &#039;&#039;&#039;RJ45 Connectors&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;60&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| &#039;&#039;&#039;REN&#039;&#039;&#039;&lt;br /&gt;
!width=&amp;quot;60&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| &#039;&#039;&#039;DMX&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| SIGNAL GND &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS-485 DATA+ &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| SIGNAL GND &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS-485  DATA-&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS-485  DATA-  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS-485 DATA+ &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| SIGNAL GND&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| NC &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can use the bridge to drive LOR controllers capable of supporting DMX as well. The simplest method is to configure the software protocol for DMX and use the REN output jumper settings. You will be required build a jumper cable to swap pins 4 and 5 between the two ends of the jumper because  LOR has these signals swapped. You may also want to connect pin 6 from the LOR to pins 1 or 2 if using the REN output.&lt;br /&gt;
&lt;br /&gt;
==Powering the E1.31 Bridge==&lt;br /&gt;
As mentioned above, the bridge can be powered with either a well regulated +5vdc supply or an unregulated/regulated +7-24vdc supply. The power supply should supply at least 350 mA. Configure the power jumper appropriately before applying power.&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
===Power up LED Activity===&lt;br /&gt;
On initial power up the green ACT and the red STATUS LEDs flash a sequence of codes to help identify the status and configuration of the bridge.  After they go thru their startup flash sequence, the the green ACT LED flashes when ever it sees IP data traffic and the red LED stays lit to signify that the configuration webpage is accessible.  The Green ACT LED startup flash pattern are:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;; cellpadding=&amp;quot;10&amp;quot; style=&amp;quot;text-align: center; background:black; color:white&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Green ACT LED&amp;lt;br/&amp;gt;Startup Flash Count&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;# of Flashes&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;600&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| IP Status&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The default bridge IP address mode is DHCP&amp;lt;br/&amp;gt; and the bridge acquired an IP address from a DHCP server.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The default bridge IP address mode is STATIC&amp;lt;br/&amp;gt;  and the STATIC address programmed into the bridge is being used.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The default bridge IP address mode has been overridden due to a button press&amp;lt;br/&amp;gt;  and the bridge has acquired an IP address from a DHCP server. &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The default bridge IP address mode has been overridden due to a button press&amp;lt;br/&amp;gt;  and the STATIC address programmed into the  bridge is being used.  &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The default bridge IP address mode is DHCP and has been overridden due to no response from the DHCP server&amp;lt;br/&amp;gt;  and the IP address of 169.254.74.73 is being used. &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The default bridge IP address mode has been overridden due to a button press&amp;lt;br/&amp;gt;  and the IP address of 169.254.74.73 is being used due to the lack of response from a DHCP server.&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Programming the EEPROM==&lt;br /&gt;
The EEPROM ships from DIYLedexpress with the firmware installed.  If you buy the parts from another vendor, or you want to update the firmware to a later version, you must have a PropPlug programming tool.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The current version of the firmware is v4.03 and you can download it [http://doityourselfchristmas.com/forums/attachment.php?attachmentid=38421&amp;amp;d=1511534427 here].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
See [http://doityourselfchristmas.com/forums/showthread.php?49116-Pixel-Extender&amp;amp;p=480820#post480820 this] post for different timings.&lt;br /&gt;
&lt;br /&gt;
4.03&lt;br /&gt;
* Supported WS2811 timings of varying production runs.&lt;br /&gt;
&lt;br /&gt;
4.02&lt;br /&gt;
* Fix for new MAC address IC&#039;s.&lt;br /&gt;
&lt;br /&gt;
4.01&lt;br /&gt;
* Test patterns (All Red, Green, or Blue, and a Red, Green or Blue chase)&lt;br /&gt;
* Timeout feature that will turn off all channels if the bridge has not received any data on any listening universe for 1-60 minutes&lt;br /&gt;
&lt;br /&gt;
4.00&lt;br /&gt;
* WS2811 Pixel Support&lt;br /&gt;
* GECE Pixel Support&lt;br /&gt;
* Web Firmware Updates - Update the Firmware without a Prop Plug, this is done with a lightweight Java application.&lt;br /&gt;
* Real Time Parameter Updates - Change RGB order, Start Universe, Total number of channels and even the Protocol on the fly without rebooting!&lt;br /&gt;
* RGB Reordering - Reorders sets of three channels for all supported protocols.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Past Versions:&lt;br /&gt;
[http://doityourselfchristmas.com/forums/dynamics/attachment.php?attachmentid=567&amp;amp;d=1445118357 4.02].&lt;br /&gt;
[http://doityourselfchristmas.com/forums/attachment.php?attachmentid=24934&amp;amp;d=1412041008 4.01]&lt;br /&gt;
[http://doityourselfchristmas.com/forums/attachment.php?attachmentid=24935&amp;amp;d=1412041109 4.00]&lt;br /&gt;
[http://doityourselfchristmas.com/forums/attachment.php?attachmentid=20701&amp;amp;d=1381775613 3.04]&lt;br /&gt;
[http://doityourselfchristmas.com/forums/attachment.php?attachmentid=20122&amp;amp;d=1377871931 3.03]&lt;br /&gt;
[http://doityourselfchristmas.com/forums/attachment.php?attachmentid=19341&amp;amp;d=1369505188 2.06]&lt;br /&gt;
&lt;br /&gt;
The Programming port on the Bridge is the 4 pin header near the WizNet adapter. Match up the silk screen labels with those on the Prop Plug. You will need to externally power the bridge when programming it.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Programming Tools Required===&lt;br /&gt;
The Propeller processor uses a different programming interface then the usual PICKIT2 or PICKIT3 device used to program the Renard PICS with their firmware.  You can not use a PICKIT 2 or PICKIT3 to load the E1.31 bridge firmware.  &#039;&#039;&#039;The recommended way to load the firmware in the E1.31 bridge is to use the PropPlug.&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
====PropPlug====&lt;br /&gt;
[[File:PropPlug.jpg]]&amp;lt;br&amp;gt;&lt;br /&gt;
You can buy a PropPlug from [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=161 DIYLEDExpress] (Limited Stock) or find it at [http://www.parallax.com/product/32201 Parallax] or [http://www.mouser.com/ProductDetail/Parallax/32201/?qs=sGAEpiMZZMt7FrWooXVB14dwtuxqLs8Y Mouser].&lt;br /&gt;
&lt;br /&gt;
====Build your own Programming Interface====&lt;br /&gt;
If you do not have access to a PropPlug, but you do have a PC with a true serial port, it is possible to build a simple interface to program the E1.31 bridge using simple common parts you can find from many vendors.  However, the low cost PropPlug with it&#039;s USB interface works best on most modern computers.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[File:SerialToPropeller.jpg]]&lt;br /&gt;
&lt;br /&gt;
===How To Install the Firmware Programming===&lt;br /&gt;
&lt;br /&gt;
* Download the [http://www.parallax.com/downloads/propeller-tool-software Parallax Propeller Tool] and install it.&lt;br /&gt;
* Run the Propeller Tool application and it will ask of you want to associate .eeprom files with the application, Say Yes. &lt;br /&gt;
* You can close the Propeller Tool application and double click on the .eeprom file you downloaded or from within the application go to File-&amp;gt;Open and change the &#039;Files of type&#039; to &#039;Propeller Applications&#039; and open the Bridge_v2.02.eeprom file. &lt;br /&gt;
* A &#039;Object Info&#039; screen will open, if not already enabled click &#039;Show Hex&#039; &lt;br /&gt;
* Connect the PropPlug to the PC and the PCB making sure that the plug is oriented correctly to match the markings on the pcb. &lt;br /&gt;
* Make sure the PCB is powered ON&lt;br /&gt;
* Program the EEPROM on the Bridge by selecting &#039;Load EEPROM&#039; and you are done.&lt;br /&gt;
&lt;br /&gt;
==Configuring and installing the E1.31 Driver==&lt;br /&gt;
In order to use your E1.31 Bridge, you must install and configure the software on your pc to allow your sequencing software to speak E1.31 protocol to the bridge.  Click on the following links for instructions for:&lt;br /&gt;
*[[E1.31_(Streaming-ACN)_Protocol#Using_E1.31_with_Vixen|Vixen]]&lt;br /&gt;
*[[E1.31_(Streaming-ACN)_Protocol#Using_E1.31_with_LOR_S3|LOR S3]]&lt;br /&gt;
*[[E1.31_(Streaming-ACN)_Protocol#Using_E1.31_with_HLS|HLS]]&lt;br /&gt;
*[[E1.31_(Streaming-ACN)_Protocol#Using_E1.31_with_LightShowPro_.28LSP.29|LSP]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Configuring the E1.31 Bridge==&lt;br /&gt;
Once the bridge has been built and passed preliminary tests, it must be configured to operate.  The configuration can be done when the bridge is connected directly to the PC or to the home network.  The configuration page can be accessed via the default IP address of the controller via the browser of your choice.   &#039;&#039;&#039;The default IP address of the bridge is 192.168.1.206&#039;&#039;&#039;    Open up your browser and enter http://192.168.1.206 and the setup page for the bridge will appear in the browser.  &#039;&#039;&#039;If you have changed the default IP address of the bridge, you must use that address to access the setup screen.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===IP Address Configuration===&lt;br /&gt;
The default IP address and mode of the bridge when initially setup is 192.168.1.206 and is a static IP address.  This can be later changed thru the web interface to what ever network address you need.  &#039;&#039;&#039;Note that all E1.31 bridges and the E682 Pixel controller all use this default IP address, so if you have multiple devices on the same network, you must change the static address of the units to avoid a conflict.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Temporary Manual Address Overide====&lt;br /&gt;
When you are troubleshooting the E1,31 bridge, it is possible to force the IP address of the unit to use another setting by using the MODE and RESET buttons at power up.  If you press the MODE and RESET buttons at the same time and hold down the MODE button while you release the RESET button you can temporarily change the IP address mode.  You must release the MODE button after the correct number of flashes listed below to activate that mode.&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;; cellpadding=&amp;quot;10&amp;quot; style=&amp;quot;text-align: center; background:black; color:white&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Green ACT LED&amp;lt;br/&amp;gt;Overide Flash Count&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;# of Flashes&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;600&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Temporary Overide IP Status&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| No Change.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| The last saved STATIC IP address is enabled&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| DHCP IP address is enabled.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Firmware Version 3.x+ Configuration==&lt;br /&gt;
[[File:BridgeConfigPage.png]]&lt;br /&gt;
&lt;br /&gt;
===System Settings===&lt;br /&gt;
[[File:SystemSettings.png]]&lt;br /&gt;
&lt;br /&gt;
IP Mode: Sets Static or DHCP IP address Mode&amp;lt;br/&amp;gt;&lt;br /&gt;
IP Address: The IP Address of the Bridge&amp;lt;br/&amp;gt;&lt;br /&gt;
Subnet Mask: The Subnet Mask of the Bridge&amp;lt;br/&amp;gt;&lt;br /&gt;
Gateway: The Gateway Address&amp;lt;br/&amp;gt;&lt;br /&gt;
MAC Address: The MAC Address of the MAC IC or Auto generated MAC Address&amp;lt;br/&amp;gt;&lt;br /&gt;
Mode: Sets the Bridge in Multicast or Unicast Mode&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After making changes to any of the settings above click &amp;quot;Update System Settings&amp;quot; to save these setting.&lt;br /&gt;
&lt;br /&gt;
===Universe Settings===&lt;br /&gt;
[[File:UniverseNumbers.png]]&lt;br /&gt;
&lt;br /&gt;
Universe Number: Defines the Universe numbers the Bridge will use, 6 are available in Multicast Mode (Unusable ones are grayed out) and 12 are available in Unicast Mode. All numbers should be unique.&amp;lt;br/&amp;gt;&lt;br /&gt;
Packets Received: The number of packages received on this universe.&amp;lt;br/&amp;gt;&lt;br /&gt;
DMX Channel Count: The number of channels sent in the E1.31 Universe packet.&amp;lt;br/&amp;gt;&lt;br /&gt;
Sequence Errors: The number of out of order packets received. NOTE: There is a bug in some of the transmitting E1.31 plugins where sequence numbers are not sequential per Universe. &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After making changes to the Universe numbers above click &amp;quot;Update Universe Numbers&amp;quot; to save these setting.&lt;br /&gt;
&lt;br /&gt;
===Output Configuration===&lt;br /&gt;
[[File:OutputConfiguration.png]]&lt;br /&gt;
&lt;br /&gt;
Output Number: The output jack number.&amp;lt;br/&amp;gt;&lt;br /&gt;
Protocol: The Protocol used for the output.&amp;lt;br/&amp;gt;&lt;br /&gt;
Baud (Renard Only): Sets the Renard Output Serial Baud Rate.&amp;lt;br/&amp;gt;&lt;br /&gt;
Options (Renard Only): Defines the output formate, Normally use 8N1, 8M2 is for solving issues with higher channel counts for RenW setups.&amp;lt;br/&amp;gt;&lt;br /&gt;
Channels: The number of channels on this output. (Note DMX has a max of 512 Channels)&amp;lt;br/&amp;gt;&lt;br /&gt;
Start Universe: Define the universe number of the starting channel.&amp;lt;br/&amp;gt;&lt;br /&gt;
Start Channel: The starting channel for this output.&amp;lt;br/&amp;gt;&lt;br /&gt;
End Universe: Auto calculated ending Universe Number.&amp;lt;br/&amp;gt;&lt;br /&gt;
End Channel: Auto calculated ending Channel Number.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After making changes to each output number click &amp;quot;Update&amp;quot; to save the changes for that output.&lt;br /&gt;
&lt;br /&gt;
==Firmware Version 2.x Configuration Commands==&lt;br /&gt;
Once you access the E1.31 webpage you can configure the device settings via a command line interface (original firmware) or via a webpage drop down menu (beta firmware).  In the command line interface, all commands are entered on the command line and are temporary until saved.  It is critical to follow all command line changes with the &amp;quot;SAVE 0&amp;quot; command to ensure your updates are saved in the device.  You must then reboot the E1.31 bridge to make the changes take effect by either hitting the RESET button, or entering &amp;quot;BOOT 999&amp;quot; .  &lt;br /&gt;
&lt;br /&gt;
===Save===&lt;br /&gt;
&#039;&#039;&#039;SAve&#039;&#039;&#039; n where n is a memory page number from 0 to 7. Writes the currently displayed configuration to the specified memory page&lt;br /&gt;
&lt;br /&gt;
===Load===&lt;br /&gt;
&#039;&#039;&#039;LOad&#039;&#039;&#039; n where n is a memory page number, 0-7. Loads the specified memory page and displays the information on the web page.&lt;br /&gt;
&lt;br /&gt;
===Boot===&lt;br /&gt;
&#039;&#039;&#039;BOot&#039;&#039;&#039; 999 will restart the system. Make sure you do a SAVE first if you have made any changes or your changes will be lost!&lt;br /&gt;
&lt;br /&gt;
===IP===&lt;br /&gt;
&#039;&#039;&#039;IP&#039;&#039;&#039; a.b.c.d    where a.b.c.d is any valid IPv4 address.&lt;br /&gt;
&lt;br /&gt;
This should be set within the same subnet as your sequencer PC Ethernet port unless you have routing enabled (not recommended). It is recommended that you have your show network on a separate subnet from your regular home network. This ensures you will not have issues with either interfering with the other. Note that this address is only used to configure/monitor the bridge - it is not used for the sequencer data itself.&lt;br /&gt;
&lt;br /&gt;
===Subnet===&lt;br /&gt;
&#039;&#039;&#039;SUbnet&#039;&#039;&#039; a.b.c.d or &#039;&#039;&#039;SUbnet&#039;&#039;&#039; n where a.b.c.d is any valid subnet mask value, or n is the size of the subnet in bits.&lt;br /&gt;
&lt;br /&gt;
This should also match the subnet mask of your PC Ethernet port since it is normally on the same subnet. This is typically 255.255.255.0 or 24 bits.&lt;br /&gt;
&lt;br /&gt;
===Gateway===&lt;br /&gt;
&#039;&#039;&#039;GAteway&#039;&#039;&#039; a.b.c.d where a.b.c.d is any valid internet address. Usually the address of your router. &lt;br /&gt;
&lt;br /&gt;
===DNS===&lt;br /&gt;
&#039;&#039;&#039;DNs&#039;&#039;&#039; a.b.c.d where a.b.c.d is any valid internet address. Usually the address of your router. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
If you are only using DHCP (not recommended), you can leave the static IP areas unused. &lt;br /&gt;
Network addressing (static or DHCP IP) is only needed to access the configuration &lt;br /&gt;
page with a web browser.  Once configured, no IP address is needed for normal operation. &lt;br /&gt;
The Default IP Mode, Web Server Mode, No Data Timeout, and Test Pattern commands affect &lt;br /&gt;
what happens when the system starts up. &lt;br /&gt;
&lt;br /&gt;
===Default===&lt;br /&gt;
&#039;&#039;&#039;DEfault&#039;&#039;&#039; n   where n is 0 or 1.&lt;br /&gt;
&lt;br /&gt;
DE 0 sets the addressing mode to a static or fixed IPv4 network address that is configured with the commands above. DE 1 sets the addressing mode to DHCP - you must have a working DHCP server on your network for the bridge to get an address. It is highly recommended to use a static IP address for the bridge so that you always know where to find it on the network.&lt;br /&gt;
&lt;br /&gt;
===Universe===&lt;br /&gt;
&#039;&#039;&#039;UNiverse&#039;&#039;&#039; b n Where b is the RJ45 output jack number, from 1 to 6 and n is universe from 1 to 63999.&lt;br /&gt;
&lt;br /&gt;
===Protocol===&lt;br /&gt;
The Protocol command is used to set the protocol for each of the six output RJ45 jacks. The current valid protocols are DMX and RENARD.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;PRotocol&#039;&#039;&#039; b n Where b is the RJ45 output jack number, from 1 to 6 and n is 1 for DMX protocol and 2 is for Renard protocol.&lt;br /&gt;
&lt;br /&gt;
===Baud===&lt;br /&gt;
The Baud command is used to set the baud rate for each of the four output RJ45 jacks.&lt;br /&gt;
NOTE: This command is only used for the Renard protocol. Baud rate will not be displayed when&lt;br /&gt;
the DMX protocol is selected.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;BAud&#039;&#039;&#039; b n Where b is the RJ45 output jack number, from 1 to 6&lt;br /&gt;
and n is 1 for a baud rate of 57,600 or 2 is for a baud rate of 115,200.&lt;br /&gt;
The Renard protocol refresh rate at 57,600bps for 512 channels is approximately 90ms and at&lt;br /&gt;
115,200bps the refresh rate for 512 channels is approximately 45ms.&lt;br /&gt;
The DMX protocol refresh rate is preset to 25ms.&lt;br /&gt;
&lt;br /&gt;
===Mode===&lt;br /&gt;
&amp;quot;MOde&amp;quot; n   Where n is 0 for Multicast or 1 for Unicast&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new 6 Port E1.31 Bridge, connected it up to your computer and tried a quick sequence and nothing happens! There are several checks to perform in order:&lt;br /&gt;
&lt;br /&gt;
===Visual Inspection===&lt;br /&gt;
The very first step involves a close visual inspection of the board. Double check that you have the correct component in the correct location and in the correct orientation. Look at every single solder connection and if some are not shiny or look suspect - reflow them to be sure.&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the bridge and ensure it&#039;s either +5vdc or +7-24vdc and ensure the power jumper is set correctly. Measure the voltage with the supply plugged in and connected to the bridge to ensure it&#039;s not shorting out. If the voltage is correct then you know the input level is correct.&lt;br /&gt;
&lt;br /&gt;
Remove any/all socketed chips from the board before proceeding.&lt;br /&gt;
&lt;br /&gt;
If you are using the +5vdc option (EXT), you need to make some measurements of the 3.3v regulator or VR2.&lt;br /&gt;
&lt;br /&gt;
Measure the input voltage between pins 1 and 2 - it should measure 5v (same as the input) - if it isn&#039;t then reflow the terminal block, 3.3v regulator and power jumper and check again.&lt;br /&gt;
&lt;br /&gt;
Measure the output voltage between pins 3 and 2 - it should measure 3.3v - if it is much above 3.3v, it&#039;s likely the regulator is bad. If it is close to 0v, you may have a short somewhere on the board. Inspect the traces coming from pin 3 over the board and look for solder bridges. If you cannot find a short, then you may have to replace the 3.3v regulator.&lt;br /&gt;
&lt;br /&gt;
If you are using the +7-24vdc option (INT), you need to make some measurements of the 5.0v regulator or VR1.&lt;br /&gt;
&lt;br /&gt;
Measure the input voltage between pins 1 and 2 - it should measure 7-24v (same as the input) - if it isn&#039;t then reflow the terminal block, 5.0v regulator and power jumper and check again.&lt;br /&gt;
&lt;br /&gt;
Measure the output voltage between pins 3 and 2 - it should measure 5.0v - if it is much above 5.0v, it&#039;s likely the regulator is bad. If it is close to 0v, you may have a short somewhere on the board. Inspect the traces coming from pin 3 over the board and look for solder bridges. If you cannot find a short, then you may have to replace the 5.0v regulator. Another option is a bad 3.3v regulator. If possible, try a +5v supply with the EXT setting and determine if the 3.3v supply is OK using the measurements above. If it is, then you know the 3.3v regulator is OK. If this is not possible, remove the 3.3v regulator and measure the 5.0v regulator output again. If it is 5.0v as it should be, then the 3.3v regulator was bad and needs to be replaced.&lt;br /&gt;
&lt;br /&gt;
==Hardware Reset==&lt;br /&gt;
===SOFT RESET===&lt;br /&gt;
By pressing and releasing the RESET button, you can force a soft reboot of the E1.31 bridge and it will restart with all of the programmed parameters that you have configured the device to.  This is a non destructive reboot and all settings remain intact after the reboot.&lt;br /&gt;
&lt;br /&gt;
===HARD RESET===&lt;br /&gt;
It is possible to do a hard reset and erase all of the configured parameters in the E1.31 bridge and return it back to the factory default settings.  To do the hard reset and lose all of your settings and return the device to the factory settings: Press the MODE and RESET buttons at the same time and hold down the MODE button while you release the RESET button.  The ACT LED will flash a status code, after the ACT LED flashes 10 times, release the MODE button.  This will wipe all device configuration settings and reset them to the default factory settings and will force the generation of a new random [http://en.wikipedia.org/wiki/MAC_address MAC ID] for the unit if the MAC ID chip (IC 9) is not installed on the board.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==FAQ==&lt;br /&gt;
&#039;&#039;&#039;TBD&#039;&#039;&#039;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Category:DIYC Index]]&lt;br /&gt;
[[Category:E1.31]]&lt;br /&gt;
[[Category:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6812</id>
		<title>Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6812"/>
		<updated>2012-04-17T06:44:25Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This is a quick tutorial on taking a rope light, adding power to it, and putting it into a Candy Cane.&lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
&lt;br /&gt;
Tools used to do this project.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6811</id>
		<title>Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6811"/>
		<updated>2012-04-17T06:44:05Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Materials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This is a quick tutorial on taking a rope light, adding power to it, and putting it into a Candy Cane.&lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
&lt;br /&gt;
Tools used to do this project.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
&lt;br /&gt;
Tools used to do this project.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6810</id>
		<title>Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6810"/>
		<updated>2012-04-17T06:43:19Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Materials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This is a quick tutorial on taking a rope light, adding power to it, and putting it into a Candy Cane.&lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
&lt;br /&gt;
Tools used to do this project.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6809</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6809"/>
		<updated>2012-04-17T06:34:01Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Materials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6808</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6808"/>
		<updated>2012-04-17T06:33:50Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6807</id>
		<title>Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6807"/>
		<updated>2012-04-17T06:32:09Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This is a quick tutorial on taking a rope light, adding power to it, and putting it into a Candy Cane.&lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6806</id>
		<title>Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6806"/>
		<updated>2012-04-17T06:31:40Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: Created page with &amp;#039;==Introduction== This is a quick tutorial on taking the rope light, adding power to it, and putting it into a Candy Cane.  ==Materials==  In this tutorial we will be using the ma…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This is a quick tutorial on taking the rope light, adding power to it, and putting it into a Candy Cane.&lt;br /&gt;
&lt;br /&gt;
==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6805</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6805"/>
		<updated>2012-04-17T06:24:07Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6804</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6804"/>
		<updated>2012-04-17T06:21:39Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight30.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The complete shrinking.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight31.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One last measure to make sure the connection is water tight, use the white electrical tape to cover from the heat shrink tubing to the power cord.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight32.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Time to put the completed rope light into the Candy Cane tube...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight33.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...and put on the end cap.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight34.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There needs to be a little split in the end of the power cord in order to put it in the Male Vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight35.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Put the cord in the plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight36.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide the top cap on the vampire plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight37.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed plug.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight38.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The completed, upgraded, Candy Cane.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight39.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the light off.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight40.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6803</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6803"/>
		<updated>2012-04-17T06:09:45Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With the rope light working, time to seal the connection.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight29.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6802</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6802"/>
		<updated>2012-04-17T06:08:20Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Move the heat shrink tubing over the top of the wire terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight22.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the heat gun to shrink the tubing to the terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight23.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Moving to the other end of the wire, strip a small amount of the casing off to test the lights.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight24.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected the wire for testing.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight25.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Connected wire to power,  CAUCTION, open 110v.  Be very careful when plugged in in this manner. Lights should turn on.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight26.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Trim off the test leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight27.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Slide on the 3&amp;quot; piece 1/2&amp;quot; Heat Shrink Tubing, making sure that about 1&amp;quot; of the tubing is one the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight28.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6801</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6801"/>
		<updated>2012-04-17T05:59:36Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the 2&#039; of SPT1 electrical wire, strip off about 1&amp;quot; of the casing on both leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight15.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the 1&amp;quot; pieces of 1/4&amp;quot; Heat Shrink Tubing on the stripped wire leads.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight16.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use one of the leads and wrap it around one of the nails ends terminals of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight17.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the soldering iron and solder to attach the wrapped wire to the nail end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight18.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat the wrapping of the wire to the other remaining nail terminal end.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight19.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also repeat the soldering of the wrapped wire to the nail.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight20.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Finished attached wires.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight21.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6800</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6800"/>
		<updated>2012-04-17T05:50:44Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight14.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6799</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6799"/>
		<updated>2012-04-17T05:49:40Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need two 1 1/4&amp;quot; 3d nails.  These will be put into the rope light to create terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Place the first nail at one of the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using hard surface, push the nail into one braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is the nail nested in the braiding.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Repeat with the other nail on the other side of the rope light braided wire.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Both nails inserted.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use liquid electrical tape on the other end...&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... to protect and cover the exposed braided wire of the other end of the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight10.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Using the soldering iron to heat the nails.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight11.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Apply solder to the heated nails to connect them to the braided wires in the rope light.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight12.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Completed soldered terminals.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight13.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6798</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6798"/>
		<updated>2012-04-17T05:36:30Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Assembly */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== Assembly ==&lt;br /&gt;
&lt;br /&gt;
Start by cutting your rope light down to size.  For this project I had purchased a 150&#039; spool of rope light that had 18&amp;quot; cut spacing.  I cut the rope light down to 3&#039; sections.&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight2,jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_upgrade_to_Rope_Light&amp;diff=6797</id>
		<title>Talk:Candy Cane upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_upgrade_to_Rope_Light&amp;diff=6797"/>
		<updated>2012-04-17T05:32:22Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: moved Talk:Candy Cane upgrade to Rope Light to Talk:Candy Cane Upgrade to Rope Light&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Talk:Candy Cane Upgrade to Rope Light]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6796</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6796"/>
		<updated>2012-04-17T05:32:22Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: moved Talk:Candy Cane upgrade to Rope Light to Talk:Candy Cane Upgrade to Rope Light&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Display_Construction&amp;diff=6795</id>
		<title>Display Construction</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Display_Construction&amp;diff=6795"/>
		<updated>2012-04-17T05:31:33Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Building */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the page to talk about how to build the things that people see in your display.  If you have custom made anything for your display write an article about it in step by step instructions and post it here.  We are always looking for cool and unique ideas and items to add to our displays.  Remember a picture is worth 1000 words!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Planning===&lt;br /&gt;
[[Hookup]]: An organized way to wire your display.&lt;br /&gt;
&lt;br /&gt;
===Electrical &amp;amp; Wiring===&lt;br /&gt;
[[Electrical Tools]]:Recommended tools that you should have on hand.&lt;br /&gt;
&lt;br /&gt;
[[GFCI]]: Why GFI Ground Fault Interrupter is so important.&lt;br /&gt;
&lt;br /&gt;
[[Shared Neutral Cables]]: Specialized cables that can combine multiple channels into a bundle.&lt;br /&gt;
&lt;br /&gt;
[[Shorten Mini Lights]]: How you can cut or shorten a set of 100 Mini style Christmas lights&lt;br /&gt;
&lt;br /&gt;
[[Extension Cord Adapters]]: How you can adapt a regular extension cord to handle two control channels.&lt;br /&gt;
&lt;br /&gt;
===Building===&lt;br /&gt;
&lt;br /&gt;
[[Mini Trees]]: What Mini Trees are and how to make them.&lt;br /&gt;
&lt;br /&gt;
Easy [[Light Arch]]: How to build a 10 channel Light Arch.&lt;br /&gt;
&lt;br /&gt;
[[Happy Holidays Sign]]: How to build a Happy Holidays sign using PVC pipe.&lt;br /&gt;
&lt;br /&gt;
[[Plywood Cut Outs]]: This page has patterns for cutting display items out of plywood.&lt;br /&gt;
&lt;br /&gt;
[[How to Convert Mini Strings to Simple Homemade Led Strings]]:  This page will tell you how to create your own led strings using old mini lights, standard leds, and diodes/resistors.  They are full wave and very easy to do.  Now you can shorten an existing string or custom make your own.&lt;br /&gt;
&lt;br /&gt;
[[How to Make a 3ft Star out of PVC]]:  Easy way to build a 3ft star out of Sch40 PVC&lt;br /&gt;
&lt;br /&gt;
[[Candy Cane Upgrade to Rope Light]]:  Taking an old Candy Cane and replacing the lights inside with rope light or adding rope light to a Candy Cane that does not have lights.  Also, just a method to add power to a cut rope light.&lt;br /&gt;
&lt;br /&gt;
===Going Green===&lt;br /&gt;
[[Led Lighting]]: Ways that Light Emitting Diodes are making headway into our designs&lt;br /&gt;
&lt;br /&gt;
[[Media: Converting_LEDs.pdf]]: Converting cheap chinese LED strings to full wave &amp;amp; dimable for light control&lt;br /&gt;
&lt;br /&gt;
[[Category:Display Construction]]&lt;br /&gt;
[[Category:How To]]&lt;br /&gt;
[[Category:DIYC Index]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6794</id>
		<title>Talk:Candy Cane Upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Talk:Candy_Cane_Upgrade_to_Rope_Light&amp;diff=6794"/>
		<updated>2012-04-17T05:27:12Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: Created page with &amp;#039;==Materials==  In this tutorial we will be using the materials. Gather your materials, supplies and tools.&amp;lt;br /&amp;gt; 1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt; 2. Power Cord, pictur…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_upgrade_to_Rope_Light&amp;diff=6793</id>
		<title>Candy Cane upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_upgrade_to_Rope_Light&amp;diff=6793"/>
		<updated>2012-04-17T05:23:11Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: /* Materials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_upgrade_to_Rope_Light&amp;diff=6792</id>
		<title>Candy Cane upgrade to Rope Light</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Candy_Cane_upgrade_to_Rope_Light&amp;diff=6792"/>
		<updated>2012-04-17T05:19:44Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: Created page with &amp;#039;==Materials==  In this tutorial we will be using the materials. Gather your materials, supplies and tools. 1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt; 2. Power Cord, pictured is …&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Materials==&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using the materials.&lt;br /&gt;
Gather your materials, supplies and tools.&lt;br /&gt;
1. Rope Light 12&amp;quot; or 18&amp;quot; Cut spacing.&amp;lt;br /&amp;gt;&lt;br /&gt;
2. Power Cord, pictured is SPT1, approx. 24&amp;quot; in length.&amp;lt;br /&amp;gt;&lt;br /&gt;
3. Male Vampire Plug.&amp;lt;br /&amp;gt;&lt;br /&gt;
4. 1/4&amp;quot; Heat Shrink Tubing, 2 pieces 1&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
5. 1/2&amp;quot; Heat Shrink Tubing, 1 piece 3&amp;quot; long.&amp;lt;br /&amp;gt;&lt;br /&gt;
6. Liquid Electrical Tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
7. 1 1/4&amp;quot; 3d nails, qty. 2.&amp;lt;br /&amp;gt;&lt;br /&gt;
8. White electrical tape.&amp;lt;br /&amp;gt;&lt;br /&gt;
9. Wire Cutters and Strippers.&amp;lt;br /&amp;gt;&lt;br /&gt;
10. Heavy Duty Cutters.&amp;lt;br /&amp;gt;&lt;br /&gt;
11. Heat Gun.&amp;lt;br /&amp;gt;&lt;br /&gt;
12. Solder and Soldering Iron.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:RopeLight1.jpg]]&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight40.jpg&amp;diff=6791</id>
		<title>File:RopeLight40.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight40.jpg&amp;diff=6791"/>
		<updated>2012-04-17T05:07:38Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight39.jpg&amp;diff=6790</id>
		<title>File:RopeLight39.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight39.jpg&amp;diff=6790"/>
		<updated>2012-04-17T05:07:10Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight38.jpg&amp;diff=6789</id>
		<title>File:RopeLight38.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight38.jpg&amp;diff=6789"/>
		<updated>2012-04-17T05:06:40Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight37.jpg&amp;diff=6788</id>
		<title>File:RopeLight37.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight37.jpg&amp;diff=6788"/>
		<updated>2012-04-17T05:06:16Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight36.jpg&amp;diff=6787</id>
		<title>File:RopeLight36.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight36.jpg&amp;diff=6787"/>
		<updated>2012-04-17T05:04:36Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight35.jpg&amp;diff=6786</id>
		<title>File:RopeLight35.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight35.jpg&amp;diff=6786"/>
		<updated>2012-04-17T05:04:07Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight34.jpg&amp;diff=6785</id>
		<title>File:RopeLight34.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight34.jpg&amp;diff=6785"/>
		<updated>2012-04-17T05:03:42Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight33.jpg&amp;diff=6784</id>
		<title>File:RopeLight33.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight33.jpg&amp;diff=6784"/>
		<updated>2012-04-17T05:03:09Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight32.jpg&amp;diff=6783</id>
		<title>File:RopeLight32.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight32.jpg&amp;diff=6783"/>
		<updated>2012-04-17T05:02:38Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight31.jpg&amp;diff=6782</id>
		<title>File:RopeLight31.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight31.jpg&amp;diff=6782"/>
		<updated>2012-04-17T05:02:00Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight30.jpg&amp;diff=6781</id>
		<title>File:RopeLight30.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight30.jpg&amp;diff=6781"/>
		<updated>2012-04-17T05:01:31Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight29.jpg&amp;diff=6780</id>
		<title>File:RopeLight29.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight29.jpg&amp;diff=6780"/>
		<updated>2012-04-17T05:00:53Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight28.jpg&amp;diff=6779</id>
		<title>File:RopeLight28.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight28.jpg&amp;diff=6779"/>
		<updated>2012-04-17T05:00:12Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight27.jpg&amp;diff=6778</id>
		<title>File:RopeLight27.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight27.jpg&amp;diff=6778"/>
		<updated>2012-04-17T04:59:30Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight26.jpg&amp;diff=6777</id>
		<title>File:RopeLight26.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight26.jpg&amp;diff=6777"/>
		<updated>2012-04-17T04:58:49Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight25.jpg&amp;diff=6776</id>
		<title>File:RopeLight25.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight25.jpg&amp;diff=6776"/>
		<updated>2012-04-17T04:58:04Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight24.jpg&amp;diff=6775</id>
		<title>File:RopeLight24.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight24.jpg&amp;diff=6775"/>
		<updated>2012-04-17T04:57:20Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight23.jpg&amp;diff=6774</id>
		<title>File:RopeLight23.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight23.jpg&amp;diff=6774"/>
		<updated>2012-04-17T04:56:38Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight22.jpg&amp;diff=6773</id>
		<title>File:RopeLight22.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight22.jpg&amp;diff=6773"/>
		<updated>2012-04-17T04:56:10Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight21.jpg&amp;diff=6772</id>
		<title>File:RopeLight21.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight21.jpg&amp;diff=6772"/>
		<updated>2012-04-17T04:55:41Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight20.jpg&amp;diff=6771</id>
		<title>File:RopeLight20.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight20.jpg&amp;diff=6771"/>
		<updated>2012-04-17T04:54:19Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight19.jpg&amp;diff=6770</id>
		<title>File:RopeLight19.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight19.jpg&amp;diff=6770"/>
		<updated>2012-04-17T04:53:47Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight18.jpg&amp;diff=6769</id>
		<title>File:RopeLight18.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight18.jpg&amp;diff=6769"/>
		<updated>2012-04-17T04:53:11Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight17.jpg&amp;diff=6768</id>
		<title>File:RopeLight17.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight17.jpg&amp;diff=6768"/>
		<updated>2012-04-17T04:52:43Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight16.jpg&amp;diff=6767</id>
		<title>File:RopeLight16.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight16.jpg&amp;diff=6767"/>
		<updated>2012-04-17T04:52:13Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight15.jpg&amp;diff=6766</id>
		<title>File:RopeLight15.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight15.jpg&amp;diff=6766"/>
		<updated>2012-04-17T04:51:30Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight14.jpg&amp;diff=6765</id>
		<title>File:RopeLight14.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight14.jpg&amp;diff=6765"/>
		<updated>2012-04-17T04:50:03Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight13.jpg&amp;diff=6764</id>
		<title>File:RopeLight13.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:RopeLight13.jpg&amp;diff=6764"/>
		<updated>2012-04-17T04:49:03Z</updated>

		<summary type="html">&lt;p&gt;Mikeh65: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mikeh65</name></author>
	</entry>
</feed>