<?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=Dlovely</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=Dlovely"/>
	<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Special:Contributions/Dlovely"/>
	<updated>2026-05-03T21:18:35Z</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=12840</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=12840"/>
		<updated>2018-06-27T11:38:44Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Programming the EEPROM */&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.04 and you can download it [http://doityourselfchristmas.com/forums/attachment.php?attachmentid=39706&amp;amp;d=1527299383 here].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
4.04&lt;br /&gt;
* Timing fix for WS2811 pixels.&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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12605</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=12605"/>
		<updated>2017-11-24T14:43:29Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Programming the EEPROM */&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;
* 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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12604</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=12604"/>
		<updated>2017-11-24T14:42:59Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Programming the EEPROM */&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.0.3&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;
* 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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12262</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=12262"/>
		<updated>2016-01-29T21:04:05Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the 6 Port E1.31 Bridge */&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.02 and you can download it [http://doityourselfchristmas.com/forums/dynamics/attachment.php?attachmentid=567&amp;amp;d=1445118357 here].&#039;&#039;&#039;&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/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;
* 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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12239</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=12239"/>
		<updated>2015-10-17T21:48:11Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Programming the EEPROM */&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, 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.02 and you can download it [http://doityourselfchristmas.com/forums/dynamics/attachment.php?attachmentid=567&amp;amp;d=1445118357 here].&#039;&#039;&#039;&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/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;
* 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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=12220</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=12220"/>
		<updated>2015-08-30T18:09:13Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the 6 Port E1.31 Bridge */&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, 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.01 and you can download it [http://doityourselfchristmas.com/forums/attachment.php?attachmentid=24934&amp;amp;d=1412041008 here].&#039;&#039;&#039;&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/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;
* 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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=E1.31_Bridge&amp;diff=11869</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=11869"/>
		<updated>2014-09-30T01:44:33Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Programming the EEPROM */&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;  Install the MAC IC, 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.01 and you can download it [http://doityourselfchristmas.com/forums/attachment.php?attachmentid=24934&amp;amp;d=1412041008 here].&#039;&#039;&#039;&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/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;
* 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>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=REN_32_Controller_Board&amp;diff=11781</id>
		<title>REN 32 Controller Board</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=REN_32_Controller_Board&amp;diff=11781"/>
		<updated>2014-07-09T18:27:27Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Board Availability */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:REN32-ANGLE.jpg | 500px]]&lt;br /&gt;
==&#039;&#039;&#039;Introduction&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:The REN 32 is the latest 32 channel Microchip 16F688 based PIC microcontroller Christmas light controller  that can be used with up to 32 [[Solid_State_Relays|AC]] or [[DCSSR|DC]] solid state relay ([[Category:SSR|SSRs]]) . The board design is based on the PIC-based 8-port dimmer concept originally developed by Phil Short. Information on the original concept can be viewed [http://computerchristmas.com/christmas/link-how_to/HowToId-71/Simple_PIC-Based_8-Port_Dimmer here]. Generic information pertaining to current Renard designs (including maximum channel count) can be found on the [[Renard]] wiki page.   It is capable of running on either 115vac or 230vac main power to the board.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:This controller follows the Renard Standardized Series (SS) controller design: a design effort to standardize the board layouts for Renard based systems and to establish a standardized list of components to use in Renard designs.  Some of the goals of the Renard SS design effort were:&lt;br /&gt;
&lt;br /&gt;
::* Completely self-contained controller board.  All that is needed to start using the board is a data input and an AC power source.  No external DC voltage supply or externally generated ZC is needed.&lt;br /&gt;
&lt;br /&gt;
::* Common part list used for all boards.  There are no special parts for any individual board, all the boards use the same components.  The only thing different is the quantity used on each board.&lt;br /&gt;
&lt;br /&gt;
::* Common component layout on the board.  With only a few exceptions, all the components on the boards are laid out in the same fashion.  &lt;br /&gt;
&lt;br /&gt;
::* On-board LEDs for full support of Renard diagnostics firmware.&lt;br /&gt;
&lt;br /&gt;
::* Easier for a new member to build.  By removing extra options from the board, now a member can just order the parts from the BOM and will be able to build the board without having to figure out which options/parts apply to their configuration.&lt;br /&gt;
&lt;br /&gt;
::* Easier to support.  By having all the boards using the same parts and having the same component layout, it will be easier to provide support to DIYC members when they have problems or ask questions.&lt;br /&gt;
&lt;br /&gt;
::* Complete documentation.  In the past, boards were created, designed, produced and distributed without much documentation to support them.  Documentation was an afterthought and was slow to catch up, some never did or is hard to understand for new members.  In the Renard SS design effort, the documentation was created at the same time as the boards so that when the boards were ready for release, the documentation was also ready.&lt;br /&gt;
[[File:REN32-SSR.jpg | center]]&lt;br /&gt;
&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.&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;The Board&#039;&#039;&#039;==&lt;br /&gt;
[[File:REN32-BOARD-FRONT.jpg | 500px]][[File:REN32-FRONT.jpg | 500px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&#039;&#039;&#039;The Ren32 measures 3.625&amp;quot; X 6.5&amp;quot;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;&#039;Board Availability&#039;&#039;&#039;===&lt;br /&gt;
&lt;br /&gt;
The PCB is available from [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_34&amp;amp;products_id=222 DIYLEDExpress.com] as well as a [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_34&amp;amp;products_id=221 PCB/BOM Kit].&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Circuit Diagram&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:The schematic diagram can be found &#039;&#039;&#039;[http://doityourselfchristmas.com/wiki//index.php?title=File:REN32_SCHEMATIC.pdf HERE]&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Key circuit components&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Connectors&#039;&#039;&#039; &lt;br /&gt;
&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;Connectors&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;Connector&#039;&#039;&#039;&lt;br /&gt;
!width=&amp;quot;90&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Type&lt;br /&gt;
!width=&amp;quot;300&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Function&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS485 outgoing data &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS232/RS485 incoming data&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 1-4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 5-8&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 9-12&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 13-16&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 17-20&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 21-24&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J9&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 25-28&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J10&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 29-32&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;AC Power In&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Screw Terminals&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| AC Power Feed&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;IC Chips&#039;&#039;&#039; &lt;br /&gt;
&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;4&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Integrated Circuits&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;50&amp;quot; style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;Location&#039;&#039;&#039;&lt;br /&gt;
!width=&amp;quot;50&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Pins&lt;br /&gt;
!width=&amp;quot;100&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Type&lt;br /&gt;
!width=&amp;quot;300&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Function&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 3&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| LF50CV &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Voltage Regulator &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 6&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| H11AA1  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Optocoupler, used to generate the Zero Cross signal  for ACSSRs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 4&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| ECS-2100AX-18.432MHZ&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 18.432 MHz Crystal Clock Oscillator &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 8&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| ST485BN &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS485 Transmitter &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 8&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| ST485BN  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS232/RS485 Reciever &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 1-8 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 9-16 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 17-24 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U9&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 24-32 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Diagnostic LEDs&#039;&#039;&#039; &lt;br /&gt;
:::&#039;&#039;&#039;NOTE:&#039;&#039;&#039;  The following Diagnostic LEDs will only function when a jumper is placed on JP3 and U6 has the diagnostic firmware loaded. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&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;Diagnostic LED Feedback&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; width=&amp;quot;50&amp;quot;  style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;LED&#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;Firmware in U6&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Diagnostic &amp;lt;br&amp;gt;Firmware&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Operational &amp;lt;br&amp;gt;Firmware&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;POWER&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Lit whenever the voltage regulator is generating 5 VDC. &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Lit whenever the voltage regulator is generating 5 VDC.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;HB&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will blink ON/OFF to indicate that the PIC is operating correctly&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 2 is ON&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;ZC&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will blink ON/OFF to indicate that the Zero Cross signal is getting to the PIC correctly &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 5 is ON &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;SD&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever the PIC is receiving data correctly&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 6 is ON&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;FE&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will only be ON when the PIC has identified a Framing Error while receiving data &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 7 is ON &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;OE&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will only be ON when the PIC has identified an Overrun Error while receiving data&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 8 is ON  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Jumpers&#039;&#039;&#039; &lt;br /&gt;
:::* &#039;&#039;&#039;JP1&#039;&#039;&#039; – RS232 signal ground.  Install a shunt (jumper) on JP1 when receiving RS232 data.&lt;br /&gt;
:::* &#039;&#039;&#039;JP2&#039;&#039;&#039; – 120 ohm termination resistor enable.  Normally a shunt will be installed on JP2 when receiving RS485 data.  Remove the shunt if you are experiencing problems with incoming data. &lt;br /&gt;
:::* &#039;&#039;&#039;JP3&#039;&#039;&#039; – Diagnostic LEDs enable.  Install a shunt on JP3 to allow the Diagnostic LEDs to function.  During normal operation, you can remove the shunt with no negative impact on board operation. &lt;br /&gt;
&lt;br /&gt;
:::* &#039;&#039;&#039;Main Voltage &#039;&#039;&#039; – You must provide either a jumper across the 2 horizontal jumpers to enable the board to run on 115vac, &#039;&#039;&#039;or&#039;&#039;&#039; one jumper across the 230vac jumper to allow the board to run on 230vac.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Test Points&#039;&#039;&#039; &lt;br /&gt;
:::* &#039;&#039;&#039;+5&#039;&#039;&#039; – Output from voltage regulator, should be +5 ± 0.1 VDC  &lt;br /&gt;
:::* &#039;&#039;&#039;GND&#039;&#039;&#039; – Ground &lt;br /&gt;
:::* &#039;&#039;&#039;ZC&#039;&#039;&#039; – Zero Cross signal&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Firmware&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:The PICs (&#039;&#039;&#039;U6&#039;&#039;&#039;,&#039;&#039;&#039;U7&#039;&#039;&#039; &#039;&#039;&#039;U8&#039;&#039;&#039;&amp;amp; &#039;&#039;&#039;U9&#039;&#039;&#039;) must be programmed with the correct firmware for the board to operate correctly.  There are two types of firmware available: Operational and Diagnostic.  The Operational firmware is what you need for normal board operation.  The Diagnostic firmware is a troubleshooting aid to use when there are problems with the board.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Renard SS Operational Firmware:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
::*[[media:Renard SS Operational Firmware.asm | Renard SS Operational Firmware.asm]] – source code that needs to be compiled&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Renard SS Diagnostic Firmware:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
::*[[media:Renard SS Diagnostic Firmware.asm | Renard SS Diagnostic Firmware.asm]] – source code that needs to be compiled&lt;br /&gt;
&lt;br /&gt;
:::Instructions for using the Renard SS Diagnostic Firmware are located on this [[Renard Diagnostic Firmware Instructions | wiki page]] or can be downloaded in this [[media:Renard SS Diagnostic Firmware Instructions.pdf | file]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;DMX Firmware:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
::Since there are many options available with the Renard DMX firmware it is impractical to post a dedicated Renard SS board version here.  Users desiring to use DMX should get the firmware [[Renard Firmware | here]]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Powering the REN 32&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:Input power requirements: An AC source.  The board can be powered be either 115vac or 230vac depending on the Main Power Jumper settings.&lt;br /&gt;
&lt;br /&gt;
===DC power:===&lt;br /&gt;
:The Ren32 generates all the DC voltage that it requires on-board and no external DC voltage source is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===AC Power:===&lt;br /&gt;
:The REN 32 requires AC power for generation of the DC voltage, the off board SSR (opto/triac) circuitry and for generation of the Zero Cross signal.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;AC Power Handling Capability&#039;&#039;&#039;==&lt;br /&gt;
===Maximum Input Load===&lt;br /&gt;
:Since the REN 32 uses off board SSRs, the power the board can control is based on their capabilities.  See the [[DCSSR]] and the [[Solid_State_Relays|ACSSR]] wiki for possible ssr designs to use with this board.  Since the REN 32 is actually 4 banks of 8 channels you can mix and match both AC and DC SSRs in groups of 8.  All channels in a bank must be the same type (AC or DC).&lt;br /&gt;
===Fuses===&lt;br /&gt;
:The board has a safety fuse for protecting the ac mains voltage on the board. &lt;br /&gt;
&lt;br /&gt;
:The [[Assembly Instructions For The REN 32#Parts Listing (BOM) | BOM]] calls for a 1 amp fuse.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Hooking Up the REN 32&#039;&#039;&#039;==&lt;br /&gt;
===J1 and J2-Renard Input and Output===&lt;br /&gt;
The two RJ45 Connectors J1&amp;amp;J2 near the top right of the board are used to bring data signals to and from the board.  J1 on the left side is the signal input from the PC or previous Renard controller.  J2 on the right side is the output to be daisy-chained to the next Renard controller.  The pins on these connectors are used as follows:&amp;lt;br/&amp;gt;&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;Serial Data Connector Pin Assignments&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; width=&amp;quot;50&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 Connector&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| J1 Input&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| J2 Output&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;1,2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| GND &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| GND&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;| Pin 3 is tied to J2 Pin 3&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Pin 3 is tied to J1 Pin 3&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;| Data- (Rx)  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Data- (Tx)&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;| Data+ (Rx)&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Data+ (Tx)&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;| GND&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| GND &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;7,8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Pins 7&amp;amp;8 are tied together to J2 Pins 7&amp;amp;8&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Pins 7&amp;amp;8 are tied together to J1 Pins 7&amp;amp;8 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Data Connections===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:Wiki - Renard SS24 Data Layout2.jpg | 800px |center]]&lt;br /&gt;
&amp;lt;center&amp;gt;&#039;&#039;&#039;Typical connection between RS485/DMX/Renard and Renard SS24 boards&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Data Cables====&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Data cables for Renard SS board hookup directly to computer COMM port&#039;&#039;&#039; &lt;br /&gt;
[[image:Wiki - Renard SS RS232 Data Cable2.jpg | 500px ]]&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;PC Serial Port to REN 32&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;RS232 Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;PC DE9 Pin 3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45 Pin 4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;PC DE9 Pin 5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45 Pin 5 and Pin 1 and/or Pin 2&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Data cable for Renard SS board hookup using a RS232-&amp;gt;RS485 or a USB-&amp;gt;RS485 converter&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
::Due to the many different types of RS232-&amp;gt;RS485 and USB-&amp;gt;RS485 converters available, the drawing only refers to the signals coming from the converter. Check the documentation for your converter to figure out how/where to hook up the correct wires.   An example is shown here with the [[media:Wiki - HXSP-2108F adapter.jpg |HXSP-2108F Adapter Hook-up ]]&lt;br /&gt;
&lt;br /&gt;
[[image:Wiki - Renard SS RS485 Data Cable.jpg | 500px ]]&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;RS485 Dongle to REN 32&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;RS485 Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RS485(-)/T-/D-/B/485-&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45 Pin 4 (blue CAT5 wire)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RS485(+)/T+/D+/A/485+&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 5 (blue/white CAT5 wire)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;GND&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pins 1 &amp;amp; 2 (orange and orange/white CAT5 wires)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Data cable for Renard SS board hookup in a DMX environment&#039;&#039;&#039;&lt;br /&gt;
[[image:wiki - DMX (XLR) to Renard SS Connection.jpg | 500px]] &amp;lt;br&amp;gt;&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;DMX using XLR Connectors&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;DMX XLR Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;XLR connector Pin 1 (GND)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 1 and/or pin 2&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;XLR connector pin 2 (Data-)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;XLR connector pin 3 (Data+)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:wiki - DMX (RJ-45) to Renard SS Connection.jpg | 500px]]&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;DMX using RJ45 Connectors&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;DMX RJ45 Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RJ45 connector pin 1 (Data+)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 5&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RJ45 connector pin 2 (Data-)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RJ45 connector pins 7 &amp;amp; 8 (GND)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pins 1 &amp;amp; 2&lt;br /&gt;
|}&lt;br /&gt;
  &lt;br /&gt;
:&#039;&#039;&#039;Data cable for Renard SS board hookup to other Renard boards&#039;&#039;&#039;&lt;br /&gt;
[[image:Wiki - Renard to Renard Data Cable.jpg | 500px]] &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 Generally only a regular straight-thru CAT5 cable is required to connect Renard SS boards to other Renard boards.  &lt;br /&gt;
 For the few exceptions (ie Ren24 V2.5), check the wiki page for those boards to see what their unique requirements are.&lt;br /&gt;
&lt;br /&gt;
====Cable Lengths====&lt;br /&gt;
&lt;br /&gt;
:Data cables connecting the Renard SS boards directly to a computer COMM port should not be longer than 50 feet according to the RS-232 standard.  This distance can also be greatly reduced by using poor quality cables.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:Data cables connecting the Renard SS boards directly to other Renard boards or any other RS-485 source can be up to 4,000 feet in length for data rates up to 100Kbps according to the RS-485 standard.&lt;br /&gt;
&lt;br /&gt;
===AC Power Connection===&lt;br /&gt;
:&#039;&#039;&#039;AC Power Connection&#039;&#039;&#039;&lt;br /&gt;
::The AC power source is connected to the two screw terminals on the left side of the board.&lt;br /&gt;
::&#039;&#039;&#039;THE CORRECT POWER JUMPERS MUST BE INSTALLED FOR THE CORRECT LINE VOLTAGE BEING SUPPLIED TO THE BOARD!!!&#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;Power Connections&#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;Input Voltage&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;90&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| 115VAC&lt;br /&gt;
!width=&amp;quot;90&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| 230VAC&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;&amp;quot;AC&amp;quot;&#039;&#039;&#039; &amp;lt;br&amp;gt; Top &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Neutral &amp;lt;br&amp;gt; (White Wire)&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Hot Wire&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;&amp;quot;IN&amp;quot;&#039;&#039;&#039; &amp;lt;br&amp;gt; Bottom &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Hot &amp;lt;br&amp;gt; (Black Wire)&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Hot Wire&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SSR Connections===&lt;br /&gt;
:&#039;&#039;&#039;Connecting SSRs to the REN 32&#039;&#039;&#039;&lt;br /&gt;
:The REN 32 provides control signals to external Solid State Relays (SSRs) to switch power on/off and to dim the lights connected to the SSRs.&lt;br /&gt;
&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Output Jack Pin Assignments&#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 #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Signal&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;| +5VDC&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;| First Output Channel&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;| Not Connected &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;| Second Output Channel&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;| Not Connected&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;| Third Output Channel&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;| Signal Ground&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;| Fourth Output Channel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:Each of the 8 output jacks control 4 channels each.&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Output Jack Channel Assignments&#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;Jack #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Channels&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 1-4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 5-8&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 9-12 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 13-16&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 17-20&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 21-24&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J9&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 25-28&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J10&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 29-32&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Connecting Multiple Renard Boards===&lt;br /&gt;
&lt;br /&gt;
[[image:wiki - Renard SS Daisy Chain.jpg | 800px |center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::The above image shows how Renard SS boards can be daisy chained together.  Renard SS8 boards are used in the image just as an example of how all Renard SS boards can be connected together.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::Key things to remember when connecting Renard SS boards together:&lt;br /&gt;
&lt;br /&gt;
:::* You only need one instance of the Renard Dimmer plug-in in Vixen for each physical COMM port being used.  You just need to make sure that the plug-in is setup for the total number of channels for all the Renard boards connected to that COMM port.  In the above example, the plug-in would be set for 32 channels.&lt;br /&gt;
&lt;br /&gt;
:::* The total number of Renard boards that can be connected together depends on the event period and the baud rate being used.  More information on the total number of channels capable with Renard systems can be found here [[Renard#Number of Circuits (Channels) | here.]]&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Configuring the jumpers on Renard SS boards&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;JP1 &amp;amp; JP2 Configuraton&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
:The configuration of JP1 and JP2 depends on the type of communication being used: &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;RS-232 Communication (direct connect to PC)&#039;&#039;&#039; &lt;br /&gt;
:::*&#039;&#039;&#039;JP1&#039;&#039;&#039; installed &lt;br /&gt;
:::*&#039;&#039;&#039;JP2&#039;&#039;&#039; not installed &lt;br /&gt;
&lt;br /&gt;
:::Reminder:  This only applies to the first Renard SS board connected to the PC.  The output of a Renard SS board to the next board is RS-485.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;RS-485 Communication (output of a Renard board or output from a RS-485 adapter/converter)&#039;&#039;&#039;&lt;br /&gt;
:::*&#039;&#039;&#039;JP1&#039;&#039;&#039; not installed &lt;br /&gt;
:::*&#039;&#039;&#039;JP2&#039;&#039;&#039; installed (try removing if data communication issues are encountered)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;JP3 Configuraton&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
::*Installed when running the Diagnostics Firmware&lt;br /&gt;
::*Normally not installed when running the Operational Firmware.  But can be left installed if you don’t mind seeing the on-board LEDs responding with the associated channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Computer Setup&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;VIXEN Settings&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
::The Renard SS boards require the Renard Dimmer [Vixen 1.1.*] or Renard Dimmer (modified) [Vixen 2.*] Plug-In. &lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Renard Dimmer Plug-In Settings:&#039;&#039;&#039; &lt;br /&gt;
:::*Protocol Version: 1 &lt;br /&gt;
:::*COM1 (or whichever COM port you are connected to) &lt;br /&gt;
:::*Baud: 57600 (default firmware value, if firmware is changed then this needs to be changed to match the firmware)&lt;br /&gt;
:::*Parity: None &lt;br /&gt;
:::*Data bits: 8 &lt;br /&gt;
:::*Stop bits: One &lt;br /&gt;
:::*Hold port open during the duration of the sequence execution: Checked &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Setup for Beginners and Troubleshooting&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:If you are unsure that you have built your hardware correctly, you should follow the procedures contained in the [[Beginners Setup Guide For The REN 32 | REN 32 Beginners Setup Guide]]. These procedures will guide you through the steps to help setup the hardware for the first time. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:If you encounter any problems with your REN 32, you can go to the [[Troubleshooting_Guide_For_The_REN 32 | Troubleshooting Guide For The REN 32]]. The troubleshooting guide contains a methodical process to try to isolate problems/malfunctions and gives suggestions of what to do to fix them.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Related Links&#039;&#039;&#039;==&lt;br /&gt;
:[[Beginners Setup Guide The REN 32]]&lt;br /&gt;
&lt;br /&gt;
:[[Assembly Instructions For The REN 32]]&lt;br /&gt;
&lt;br /&gt;
:[[Troubleshooting_Guide_For_The_REN 32| Troubleshooting Guide The REN 32]]&lt;br /&gt;
&lt;br /&gt;
:Board Availability Information&lt;br /&gt;
&lt;br /&gt;
:[[Renard Main Page]]&lt;br /&gt;
&lt;br /&gt;
:[[Renard Firmware]]&lt;br /&gt;
&lt;br /&gt;
:[[Part Substitutions]]&lt;br /&gt;
&lt;br /&gt;
:[[Vixen|VIXEN]]&lt;br /&gt;
&lt;br /&gt;
:[[Glossary | Glossary of DIYC Terms]]&lt;br /&gt;
&lt;br /&gt;
:[http://en.wikipedia.org/wiki/Electronic_symbol Electronic Symbols]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:REN 32]]&lt;br /&gt;
[[Category:DIYC Index]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=REN_32_Controller_Board&amp;diff=11780</id>
		<title>REN 32 Controller Board</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=REN_32_Controller_Board&amp;diff=11780"/>
		<updated>2014-07-09T18:26:12Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Board Availability */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:REN32-ANGLE.jpg | 500px]]&lt;br /&gt;
==&#039;&#039;&#039;Introduction&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:The REN 32 is the latest 32 channel Microchip 16F688 based PIC microcontroller Christmas light controller  that can be used with up to 32 [[Solid_State_Relays|AC]] or [[DCSSR|DC]] solid state relay ([[Category:SSR|SSRs]]) . The board design is based on the PIC-based 8-port dimmer concept originally developed by Phil Short. Information on the original concept can be viewed [http://computerchristmas.com/christmas/link-how_to/HowToId-71/Simple_PIC-Based_8-Port_Dimmer here]. Generic information pertaining to current Renard designs (including maximum channel count) can be found on the [[Renard]] wiki page.   It is capable of running on either 115vac or 230vac main power to the board.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:This controller follows the Renard Standardized Series (SS) controller design: a design effort to standardize the board layouts for Renard based systems and to establish a standardized list of components to use in Renard designs.  Some of the goals of the Renard SS design effort were:&lt;br /&gt;
&lt;br /&gt;
::* Completely self-contained controller board.  All that is needed to start using the board is a data input and an AC power source.  No external DC voltage supply or externally generated ZC is needed.&lt;br /&gt;
&lt;br /&gt;
::* Common part list used for all boards.  There are no special parts for any individual board, all the boards use the same components.  The only thing different is the quantity used on each board.&lt;br /&gt;
&lt;br /&gt;
::* Common component layout on the board.  With only a few exceptions, all the components on the boards are laid out in the same fashion.  &lt;br /&gt;
&lt;br /&gt;
::* On-board LEDs for full support of Renard diagnostics firmware.&lt;br /&gt;
&lt;br /&gt;
::* Easier for a new member to build.  By removing extra options from the board, now a member can just order the parts from the BOM and will be able to build the board without having to figure out which options/parts apply to their configuration.&lt;br /&gt;
&lt;br /&gt;
::* Easier to support.  By having all the boards using the same parts and having the same component layout, it will be easier to provide support to DIYC members when they have problems or ask questions.&lt;br /&gt;
&lt;br /&gt;
::* Complete documentation.  In the past, boards were created, designed, produced and distributed without much documentation to support them.  Documentation was an afterthought and was slow to catch up, some never did or is hard to understand for new members.  In the Renard SS design effort, the documentation was created at the same time as the boards so that when the boards were ready for release, the documentation was also ready.&lt;br /&gt;
[[File:REN32-SSR.jpg | center]]&lt;br /&gt;
&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.&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;The Board&#039;&#039;&#039;==&lt;br /&gt;
[[File:REN32-BOARD-FRONT.jpg | 500px]][[File:REN32-FRONT.jpg | 500px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&#039;&#039;&#039;The Ren32 measures 3.625&amp;quot; X 6.5&amp;quot;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===&#039;&#039;&#039;Board Availability&#039;&#039;&#039;===&lt;br /&gt;
&lt;br /&gt;
The PCB is available from [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_34&amp;amp;products_id=222 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Circuit Diagram&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:The schematic diagram can be found &#039;&#039;&#039;[http://doityourselfchristmas.com/wiki//index.php?title=File:REN32_SCHEMATIC.pdf HERE]&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Key circuit components&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Connectors&#039;&#039;&#039; &lt;br /&gt;
&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;Connectors&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;Connector&#039;&#039;&#039;&lt;br /&gt;
!width=&amp;quot;90&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Type&lt;br /&gt;
!width=&amp;quot;300&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Function&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS485 outgoing data &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS232/RS485 incoming data&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 1-4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 5-8&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 9-12&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 13-16&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 17-20&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 21-24&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J9&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 25-28&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J10&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Control Signal to SSR Channels 29-32&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;AC Power In&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Screw Terminals&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| AC Power Feed&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;IC Chips&#039;&#039;&#039; &lt;br /&gt;
&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;4&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Integrated Circuits&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;50&amp;quot; style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;Location&#039;&#039;&#039;&lt;br /&gt;
!width=&amp;quot;50&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Pins&lt;br /&gt;
!width=&amp;quot;100&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Type&lt;br /&gt;
!width=&amp;quot;300&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Function&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U1&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 3&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| LF50CV &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Voltage Regulator &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 6&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| H11AA1  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Optocoupler, used to generate the Zero Cross signal  for ACSSRs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 4&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| ECS-2100AX-18.432MHZ&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 18.432 MHz Crystal Clock Oscillator &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 8&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| ST485BN &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS485 Transmitter &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 8&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| ST485BN  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RS232/RS485 Reciever &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 1-8 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 9-16 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 17-24 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;U9&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 14&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| PIC16F688 &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Microprocessor that controls Channels 24-32 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Diagnostic LEDs&#039;&#039;&#039; &lt;br /&gt;
:::&#039;&#039;&#039;NOTE:&#039;&#039;&#039;  The following Diagnostic LEDs will only function when a jumper is placed on JP3 and U6 has the diagnostic firmware loaded. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&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;Diagnostic LED Feedback&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; width=&amp;quot;50&amp;quot;  style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;LED&#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;Firmware in U6&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Diagnostic &amp;lt;br&amp;gt;Firmware&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Operational &amp;lt;br&amp;gt;Firmware&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;POWER&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Lit whenever the voltage regulator is generating 5 VDC. &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Lit whenever the voltage regulator is generating 5 VDC.&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;HB&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will blink ON/OFF to indicate that the PIC is operating correctly&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 2 is ON&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;ZC&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will blink ON/OFF to indicate that the Zero Cross signal is getting to the PIC correctly &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 5 is ON &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;SD&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever the PIC is receiving data correctly&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 6 is ON&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;FE&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will only be ON when the PIC has identified a Framing Error while receiving data &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 7 is ON &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;OE&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will only be ON when the PIC has identified an Overrun Error while receiving data&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| will be ON whenever channel 8 is ON  &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Jumpers&#039;&#039;&#039; &lt;br /&gt;
:::* &#039;&#039;&#039;JP1&#039;&#039;&#039; – RS232 signal ground.  Install a shunt (jumper) on JP1 when receiving RS232 data.&lt;br /&gt;
:::* &#039;&#039;&#039;JP2&#039;&#039;&#039; – 120 ohm termination resistor enable.  Normally a shunt will be installed on JP2 when receiving RS485 data.  Remove the shunt if you are experiencing problems with incoming data. &lt;br /&gt;
:::* &#039;&#039;&#039;JP3&#039;&#039;&#039; – Diagnostic LEDs enable.  Install a shunt on JP3 to allow the Diagnostic LEDs to function.  During normal operation, you can remove the shunt with no negative impact on board operation. &lt;br /&gt;
&lt;br /&gt;
:::* &#039;&#039;&#039;Main Voltage &#039;&#039;&#039; – You must provide either a jumper across the 2 horizontal jumpers to enable the board to run on 115vac, &#039;&#039;&#039;or&#039;&#039;&#039; one jumper across the 230vac jumper to allow the board to run on 230vac.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Test Points&#039;&#039;&#039; &lt;br /&gt;
:::* &#039;&#039;&#039;+5&#039;&#039;&#039; – Output from voltage regulator, should be +5 ± 0.1 VDC  &lt;br /&gt;
:::* &#039;&#039;&#039;GND&#039;&#039;&#039; – Ground &lt;br /&gt;
:::* &#039;&#039;&#039;ZC&#039;&#039;&#039; – Zero Cross signal&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Firmware&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:The PICs (&#039;&#039;&#039;U6&#039;&#039;&#039;,&#039;&#039;&#039;U7&#039;&#039;&#039; &#039;&#039;&#039;U8&#039;&#039;&#039;&amp;amp; &#039;&#039;&#039;U9&#039;&#039;&#039;) must be programmed with the correct firmware for the board to operate correctly.  There are two types of firmware available: Operational and Diagnostic.  The Operational firmware is what you need for normal board operation.  The Diagnostic firmware is a troubleshooting aid to use when there are problems with the board.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Renard SS Operational Firmware:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
::*[[media:Renard SS Operational Firmware.asm | Renard SS Operational Firmware.asm]] – source code that needs to be compiled&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Renard SS Diagnostic Firmware:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
::*[[media:Renard SS Diagnostic Firmware.asm | Renard SS Diagnostic Firmware.asm]] – source code that needs to be compiled&lt;br /&gt;
&lt;br /&gt;
:::Instructions for using the Renard SS Diagnostic Firmware are located on this [[Renard Diagnostic Firmware Instructions | wiki page]] or can be downloaded in this [[media:Renard SS Diagnostic Firmware Instructions.pdf | file]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;DMX Firmware:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
::Since there are many options available with the Renard DMX firmware it is impractical to post a dedicated Renard SS board version here.  Users desiring to use DMX should get the firmware [[Renard Firmware | here]]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Powering the REN 32&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:Input power requirements: An AC source.  The board can be powered be either 115vac or 230vac depending on the Main Power Jumper settings.&lt;br /&gt;
&lt;br /&gt;
===DC power:===&lt;br /&gt;
:The Ren32 generates all the DC voltage that it requires on-board and no external DC voltage source is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===AC Power:===&lt;br /&gt;
:The REN 32 requires AC power for generation of the DC voltage, the off board SSR (opto/triac) circuitry and for generation of the Zero Cross signal.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;AC Power Handling Capability&#039;&#039;&#039;==&lt;br /&gt;
===Maximum Input Load===&lt;br /&gt;
:Since the REN 32 uses off board SSRs, the power the board can control is based on their capabilities.  See the [[DCSSR]] and the [[Solid_State_Relays|ACSSR]] wiki for possible ssr designs to use with this board.  Since the REN 32 is actually 4 banks of 8 channels you can mix and match both AC and DC SSRs in groups of 8.  All channels in a bank must be the same type (AC or DC).&lt;br /&gt;
===Fuses===&lt;br /&gt;
:The board has a safety fuse for protecting the ac mains voltage on the board. &lt;br /&gt;
&lt;br /&gt;
:The [[Assembly Instructions For The REN 32#Parts Listing (BOM) | BOM]] calls for a 1 amp fuse.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Hooking Up the REN 32&#039;&#039;&#039;==&lt;br /&gt;
===J1 and J2-Renard Input and Output===&lt;br /&gt;
The two RJ45 Connectors J1&amp;amp;J2 near the top right of the board are used to bring data signals to and from the board.  J1 on the left side is the signal input from the PC or previous Renard controller.  J2 on the right side is the output to be daisy-chained to the next Renard controller.  The pins on these connectors are used as follows:&amp;lt;br/&amp;gt;&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;Serial Data Connector Pin Assignments&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; width=&amp;quot;50&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 Connector&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| J1 Input&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| J2 Output&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;1,2&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| GND &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| GND&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;| Pin 3 is tied to J2 Pin 3&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Pin 3 is tied to J1 Pin 3&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;| Data- (Rx)  &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Data- (Tx)&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;| Data+ (Rx)&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Data+ (Tx)&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;| GND&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| GND &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;7,8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Pins 7&amp;amp;8 are tied together to J2 Pins 7&amp;amp;8&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Pins 7&amp;amp;8 are tied together to J1 Pins 7&amp;amp;8 &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Data Connections===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:Wiki - Renard SS24 Data Layout2.jpg | 800px |center]]&lt;br /&gt;
&amp;lt;center&amp;gt;&#039;&#039;&#039;Typical connection between RS485/DMX/Renard and Renard SS24 boards&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Data Cables====&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Data cables for Renard SS board hookup directly to computer COMM port&#039;&#039;&#039; &lt;br /&gt;
[[image:Wiki - Renard SS RS232 Data Cable2.jpg | 500px ]]&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;PC Serial Port to REN 32&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;RS232 Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;PC DE9 Pin 3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45 Pin 4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;PC DE9 Pin 5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45 Pin 5 and Pin 1 and/or Pin 2&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Data cable for Renard SS board hookup using a RS232-&amp;gt;RS485 or a USB-&amp;gt;RS485 converter&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
::Due to the many different types of RS232-&amp;gt;RS485 and USB-&amp;gt;RS485 converters available, the drawing only refers to the signals coming from the converter. Check the documentation for your converter to figure out how/where to hook up the correct wires.   An example is shown here with the [[media:Wiki - HXSP-2108F adapter.jpg |HXSP-2108F Adapter Hook-up ]]&lt;br /&gt;
&lt;br /&gt;
[[image:Wiki - Renard SS RS485 Data Cable.jpg | 500px ]]&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;RS485 Dongle to REN 32&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;RS485 Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RS485(-)/T-/D-/B/485-&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45 Pin 4 (blue CAT5 wire)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RS485(+)/T+/D+/A/485+&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 5 (blue/white CAT5 wire)&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;GND&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pins 1 &amp;amp; 2 (orange and orange/white CAT5 wires)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Data cable for Renard SS board hookup in a DMX environment&#039;&#039;&#039;&lt;br /&gt;
[[image:wiki - DMX (XLR) to Renard SS Connection.jpg | 500px]] &amp;lt;br&amp;gt;&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;DMX using XLR Connectors&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;DMX XLR Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;XLR connector Pin 1 (GND)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 1 and/or pin 2&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;XLR connector pin 2 (Data-)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;XLR connector pin 3 (Data+)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 5&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:wiki - DMX (RJ-45) to Renard SS Connection.jpg | 500px]]&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;DMX using RJ45 Connectors&#039;&#039;&#039;&amp;lt;br&amp;gt;&#039;&#039;&#039;Adapter Cable&#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;DMX RJ45 Pin #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| REN 32 RJ45&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RJ45 connector pin 1 (Data+)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 5&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RJ45 connector pin 2 (Data-)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pin 4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;RJ45 connector pins 7 &amp;amp; 8 (GND)&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| RJ45-pins 1 &amp;amp; 2&lt;br /&gt;
|}&lt;br /&gt;
  &lt;br /&gt;
:&#039;&#039;&#039;Data cable for Renard SS board hookup to other Renard boards&#039;&#039;&#039;&lt;br /&gt;
[[image:Wiki - Renard to Renard Data Cable.jpg | 500px]] &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 Generally only a regular straight-thru CAT5 cable is required to connect Renard SS boards to other Renard boards.  &lt;br /&gt;
 For the few exceptions (ie Ren24 V2.5), check the wiki page for those boards to see what their unique requirements are.&lt;br /&gt;
&lt;br /&gt;
====Cable Lengths====&lt;br /&gt;
&lt;br /&gt;
:Data cables connecting the Renard SS boards directly to a computer COMM port should not be longer than 50 feet according to the RS-232 standard.  This distance can also be greatly reduced by using poor quality cables.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:Data cables connecting the Renard SS boards directly to other Renard boards or any other RS-485 source can be up to 4,000 feet in length for data rates up to 100Kbps according to the RS-485 standard.&lt;br /&gt;
&lt;br /&gt;
===AC Power Connection===&lt;br /&gt;
:&#039;&#039;&#039;AC Power Connection&#039;&#039;&#039;&lt;br /&gt;
::The AC power source is connected to the two screw terminals on the left side of the board.&lt;br /&gt;
::&#039;&#039;&#039;THE CORRECT POWER JUMPERS MUST BE INSTALLED FOR THE CORRECT LINE VOLTAGE BEING SUPPLIED TO THE BOARD!!!&#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;Power Connections&#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;Input Voltage&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;90&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| 115VAC&lt;br /&gt;
!width=&amp;quot;90&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| 230VAC&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;&amp;quot;AC&amp;quot;&#039;&#039;&#039; &amp;lt;br&amp;gt; Top &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Neutral &amp;lt;br&amp;gt; (White Wire)&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Hot Wire&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;&amp;quot;IN&amp;quot;&#039;&#039;&#039; &amp;lt;br&amp;gt; Bottom &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Hot &amp;lt;br&amp;gt; (Black Wire)&lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| Hot Wire&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===SSR Connections===&lt;br /&gt;
:&#039;&#039;&#039;Connecting SSRs to the REN 32&#039;&#039;&#039;&lt;br /&gt;
:The REN 32 provides control signals to external Solid State Relays (SSRs) to switch power on/off and to dim the lights connected to the SSRs.&lt;br /&gt;
&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Output Jack Pin Assignments&#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 #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Signal&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;| +5VDC&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;| First Output Channel&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;| Not Connected &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;| Second Output Channel&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;| Not Connected&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;| Third Output Channel&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;| Signal Ground&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;| Fourth Output Channel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:Each of the 8 output jacks control 4 channels each.&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;3&amp;quot; align=&amp;quot;center&amp;quot; style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| &#039;&#039;&#039;Output Jack Channel Assignments&#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;Jack #&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; style=&amp;quot;background:#D3D3D3; color:black&amp;quot;| Channels&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J3&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 1-4&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J4&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 5-8&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J5&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 9-12 &lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J6&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 13-16&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J7&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 17-20&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J8&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 21-24&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J9&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 25-28&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;background:#AFEEEE; color:black&amp;quot;| &#039;&#039;&#039;J10&#039;&#039;&#039; &lt;br /&gt;
|style=&amp;quot;background:#FBEC5D; color:black&amp;quot;| 29-32&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Connecting Multiple Renard Boards===&lt;br /&gt;
&lt;br /&gt;
[[image:wiki - Renard SS Daisy Chain.jpg | 800px |center]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::The above image shows how Renard SS boards can be daisy chained together.  Renard SS8 boards are used in the image just as an example of how all Renard SS boards can be connected together.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
::Key things to remember when connecting Renard SS boards together:&lt;br /&gt;
&lt;br /&gt;
:::* You only need one instance of the Renard Dimmer plug-in in Vixen for each physical COMM port being used.  You just need to make sure that the plug-in is setup for the total number of channels for all the Renard boards connected to that COMM port.  In the above example, the plug-in would be set for 32 channels.&lt;br /&gt;
&lt;br /&gt;
:::* The total number of Renard boards that can be connected together depends on the event period and the baud rate being used.  More information on the total number of channels capable with Renard systems can be found here [[Renard#Number of Circuits (Channels) | here.]]&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Configuring the jumpers on Renard SS boards&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;JP1 &amp;amp; JP2 Configuraton&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
:The configuration of JP1 and JP2 depends on the type of communication being used: &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;RS-232 Communication (direct connect to PC)&#039;&#039;&#039; &lt;br /&gt;
:::*&#039;&#039;&#039;JP1&#039;&#039;&#039; installed &lt;br /&gt;
:::*&#039;&#039;&#039;JP2&#039;&#039;&#039; not installed &lt;br /&gt;
&lt;br /&gt;
:::Reminder:  This only applies to the first Renard SS board connected to the PC.  The output of a Renard SS board to the next board is RS-485.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;RS-485 Communication (output of a Renard board or output from a RS-485 adapter/converter)&#039;&#039;&#039;&lt;br /&gt;
:::*&#039;&#039;&#039;JP1&#039;&#039;&#039; not installed &lt;br /&gt;
:::*&#039;&#039;&#039;JP2&#039;&#039;&#039; installed (try removing if data communication issues are encountered)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;JP3 Configuraton&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
::*Installed when running the Diagnostics Firmware&lt;br /&gt;
::*Normally not installed when running the Operational Firmware.  But can be left installed if you don’t mind seeing the on-board LEDs responding with the associated channels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Computer Setup&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;VIXEN Settings&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
::The Renard SS boards require the Renard Dimmer [Vixen 1.1.*] or Renard Dimmer (modified) [Vixen 2.*] Plug-In. &lt;br /&gt;
&lt;br /&gt;
::&#039;&#039;&#039;Renard Dimmer Plug-In Settings:&#039;&#039;&#039; &lt;br /&gt;
:::*Protocol Version: 1 &lt;br /&gt;
:::*COM1 (or whichever COM port you are connected to) &lt;br /&gt;
:::*Baud: 57600 (default firmware value, if firmware is changed then this needs to be changed to match the firmware)&lt;br /&gt;
:::*Parity: None &lt;br /&gt;
:::*Data bits: 8 &lt;br /&gt;
:::*Stop bits: One &lt;br /&gt;
:::*Hold port open during the duration of the sequence execution: Checked &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Setup for Beginners and Troubleshooting&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
:If you are unsure that you have built your hardware correctly, you should follow the procedures contained in the [[Beginners Setup Guide For The REN 32 | REN 32 Beginners Setup Guide]]. These procedures will guide you through the steps to help setup the hardware for the first time. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:If you encounter any problems with your REN 32, you can go to the [[Troubleshooting_Guide_For_The_REN 32 | Troubleshooting Guide For The REN 32]]. The troubleshooting guide contains a methodical process to try to isolate problems/malfunctions and gives suggestions of what to do to fix them.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Related Links&#039;&#039;&#039;==&lt;br /&gt;
:[[Beginners Setup Guide The REN 32]]&lt;br /&gt;
&lt;br /&gt;
:[[Assembly Instructions For The REN 32]]&lt;br /&gt;
&lt;br /&gt;
:[[Troubleshooting_Guide_For_The_REN 32| Troubleshooting Guide The REN 32]]&lt;br /&gt;
&lt;br /&gt;
:Board Availability Information&lt;br /&gt;
&lt;br /&gt;
:[[Renard Main Page]]&lt;br /&gt;
&lt;br /&gt;
:[[Renard Firmware]]&lt;br /&gt;
&lt;br /&gt;
:[[Part Substitutions]]&lt;br /&gt;
&lt;br /&gt;
:[[Vixen|VIXEN]]&lt;br /&gt;
&lt;br /&gt;
:[[Glossary | Glossary of DIYC Terms]]&lt;br /&gt;
&lt;br /&gt;
:[http://en.wikipedia.org/wiki/Electronic_symbol Electronic Symbols]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:REN 32]]&lt;br /&gt;
[[Category:DIYC Index]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11747</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11747"/>
		<updated>2014-06-09T17:44:58Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Initial Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
The Pixel Extender is an add on for the [[E1.31 Bridge]]. It allows Pixels to be run directly from the Bridge without the need for an additional controller. They are replacements for the tiny DMX to Pixel controllers but have some added benefits. You can configure the protocol, channels (Start, Total count) and RGB order all from within the Bridge configuration web page. Currently WS2811 and GECE protocols are supported. Since they use true RS485 drivers they can be located thousands of feet away from the Bridge giving you ample configuration options for those locations a full controller or Ethernet run is not optimal.&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
V1.2 - Initial Release&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-680-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 680ohms 0.05&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;R2-R3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-1K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 1.0Kohms 0.05&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;R4-R5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-27K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 27Kohms 5%&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;R6&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;1&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;701-SP485ES-L&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;RS-485 Interface IC RS485 5000 kbps temp -40C to 85C&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;5V Regulator&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;512-LM78L05ACZX&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Linear Voltage Regulators TO-92 .1A Pos Volt&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;C1-C3&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;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;J1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-5556416-1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Modular Connectors / Ethernet Connectors 8 PCB TOP ENTRY&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;Pixel Connector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39501-6004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks 3.5MM EURO HEADER VE HEADER VERT GRN 4CKT&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;Pixel Connector Plug&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39500-0004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks EURO 3.5MM HOR PLUG 4CIRCUITS&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;Shunt&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;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;Standard LEDs - Through Hole GREEN DIFFUSED&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;JP1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-826629-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 2P 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;X1,X3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39890-0302&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fixed Terminal Blocks 5.0MM ECONOMY 2P 14-24AWG&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;Fuse&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;504-ATM-7-1/2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Automotive Fuses 7.5A 32Vdc 1kA IR Brown&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;Fuse Holder&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;534-3544-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fuse Clips AUTO FUSEHOLDER .032&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 1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-1-390261-2&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;1&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: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=7ab47643db   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:PixelExtender-Step13.jpg|300px]]&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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
Power the Pixel Extender with a 5V or 12V power supply. Each Pixel Extender can provide up to 7.5A of fused power to the attached pixels. Apply power to the X1 terminal block.&lt;br /&gt;
&lt;br /&gt;
==Initial Testing and Connecting to the E1.31 Bridge==&lt;br /&gt;
&lt;br /&gt;
On the E1.31 Bridge, set the output &#039;&#039;&#039;jumpers&#039;&#039;&#039; to Renard. The Pixel Extender uses data on Pins 4/5 so the jumpers need to be set to Renard. Configure the output on the E1.31 Bridge webpage to be WS2811 or GECE then update that output. Now power off everything and connect your E1.31 Bridge to the Pixel Extender and attach your Pixel string. Power everything up (Order does not matter for WS2811, but for GECE power them up before powering up the E1.31 Bridge). You can now send E1.31 Data to the Bridge or use an internal test pattern to test the Pixel Extenders.&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11746</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11746"/>
		<updated>2014-06-09T17:40:58Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Powering the Pixel Extender */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
The Pixel Extender is an add on for the [[E1.31 Bridge]]. It allows Pixels to be run directly from the Bridge without the need for an additional controller. They are replacements for the tiny DMX to Pixel controllers but have some added benefits. You can configure the protocol, channels (Start, Total count) and RGB order all from within the Bridge configuration web page. Currently WS2811 and GECE protocols are supported. Since they use true RS485 drivers they can be located thousands of feet away from the Bridge giving you ample configuration options for those locations a full controller or Ethernet run is not optimal.&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
V1.2 - Initial Release&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-680-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 680ohms 0.05&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;R2-R3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-1K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 1.0Kohms 0.05&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;R4-R5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-27K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 27Kohms 5%&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;R6&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;1&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;701-SP485ES-L&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;RS-485 Interface IC RS485 5000 kbps temp -40C to 85C&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;5V Regulator&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;512-LM78L05ACZX&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Linear Voltage Regulators TO-92 .1A Pos Volt&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;C1-C3&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;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;J1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-5556416-1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Modular Connectors / Ethernet Connectors 8 PCB TOP ENTRY&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;Pixel Connector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39501-6004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks 3.5MM EURO HEADER VE HEADER VERT GRN 4CKT&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;Pixel Connector Plug&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39500-0004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks EURO 3.5MM HOR PLUG 4CIRCUITS&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;Shunt&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;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;Standard LEDs - Through Hole GREEN DIFFUSED&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;JP1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-826629-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 2P 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;X1,X3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39890-0302&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fixed Terminal Blocks 5.0MM ECONOMY 2P 14-24AWG&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;Fuse&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;504-ATM-7-1/2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Automotive Fuses 7.5A 32Vdc 1kA IR Brown&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;Fuse Holder&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;534-3544-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fuse Clips AUTO FUSEHOLDER .032&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 1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-1-390261-2&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;1&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: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=7ab47643db   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:PixelExtender-Step13.jpg|300px]]&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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
Power the Pixel Extender with a 5V or 12V power supply. Each Pixel Extender can provide up to 7.5A of fused power to the attached pixels. Apply power to the X1 terminal block.&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11745</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11745"/>
		<updated>2014-06-09T17:38:05Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
The Pixel Extender is an add on for the [[E1.31 Bridge]]. It allows Pixels to be run directly from the Bridge without the need for an additional controller. They are replacements for the tiny DMX to Pixel controllers but have some added benefits. You can configure the protocol, channels (Start, Total count) and RGB order all from within the Bridge configuration web page. Currently WS2811 and GECE protocols are supported. Since they use true RS485 drivers they can be located thousands of feet away from the Bridge giving you ample configuration options for those locations a full controller or Ethernet run is not optimal.&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
V1.2 - Initial Release&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-680-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 680ohms 0.05&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;R2-R3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-1K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 1.0Kohms 0.05&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;R4-R5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-27K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 27Kohms 5%&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;R6&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;1&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;701-SP485ES-L&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;RS-485 Interface IC RS485 5000 kbps temp -40C to 85C&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;5V Regulator&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;512-LM78L05ACZX&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Linear Voltage Regulators TO-92 .1A Pos Volt&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;C1-C3&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;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;J1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-5556416-1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Modular Connectors / Ethernet Connectors 8 PCB TOP ENTRY&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;Pixel Connector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39501-6004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks 3.5MM EURO HEADER VE HEADER VERT GRN 4CKT&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;Pixel Connector Plug&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39500-0004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks EURO 3.5MM HOR PLUG 4CIRCUITS&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;Shunt&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;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;Standard LEDs - Through Hole GREEN DIFFUSED&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;JP1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-826629-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 2P 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;X1,X3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39890-0302&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fixed Terminal Blocks 5.0MM ECONOMY 2P 14-24AWG&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;Fuse&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;504-ATM-7-1/2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Automotive Fuses 7.5A 32Vdc 1kA IR Brown&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;Fuse Holder&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;534-3544-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fuse Clips AUTO FUSEHOLDER .032&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 1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-1-390261-2&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;1&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: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=7ab47643db   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:PixelExtender-Step13.jpg|300px]]&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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11744</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11744"/>
		<updated>2014-06-09T17:36:38Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Pixel Extender Parts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
The Pixel Extender is an add on for the [[E1.31 Bridge]]. It allows Pixels to be run directly from the Bridge without the need for an additional controller. They are replacements for the tiny DMX to Pixel controllers but have some added benefits. You can configure the protocol, channels (Start, Total count) and RGB order all from within the Bridge configuration web page. Currently WS2811 and GECE protocols are supported. Since they use true RS485 drivers they can be located thousands of feet away from the Bridge giving you ample configuration options for those locations a full controller or Ethernet run is not optimal.&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
V1.2 - Initial Release&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-680-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 680ohms 0.05&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;R2-R3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-1K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 1.0Kohms 0.05&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;R4-R5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;299-27K-RC&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Carbon Film Resistors - Through Hole 27Kohms 5%&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;R6&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;1&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;701-SP485ES-L&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;RS-485 Interface IC RS485 5000 kbps temp -40C to 85C&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;5V Regulator&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;512-LM78L05ACZX&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Linear Voltage Regulators TO-92 .1A Pos Volt&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;C1-C3&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;3&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;J1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-5556416-1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Modular Connectors / Ethernet Connectors 8 PCB TOP ENTRY&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;Pixel Connector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39501-6004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks 3.5MM EURO HEADER VE HEADER VERT GRN 4CKT&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;Pixel Connector Plug&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39500-0004&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Pluggable Terminal Blocks EURO 3.5MM HOR PLUG 4CIRCUITS&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;Shunt&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;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;Standard LEDs - Through Hole GREEN DIFFUSED&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;JP1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-826629-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Headers &amp;amp; Wire Housings 2P 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;X1,X3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;538-39890-0302&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fixed Terminal Blocks 5.0MM ECONOMY 2P 14-24AWG&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;Fuse&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;504-ATM-7-1/2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Automotive Fuses 7.5A 32Vdc 1kA IR Brown&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;Fuse Holder&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;534-3544-2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fuse Clips AUTO FUSEHOLDER .032&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 1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;571-1-390261-2&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;1&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: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=7ab47643db   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:#:PixelExtender-Step13.jpg|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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11743</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11743"/>
		<updated>2014-06-09T17:13:58Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* What is the Pixel Extender? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
The Pixel Extender is an add on for the [[E1.31 Bridge]]. It allows Pixels to be run directly from the Bridge without the need for an additional controller. They are replacements for the tiny DMX to Pixel controllers but have some added benefits. You can configure the protocol, channels (Start, Total count) and RGB order all from within the Bridge configuration web page. Currently WS2811 and GECE protocols are supported. Since they use true RS485 drivers they can be located thousands of feet away from the Bridge giving you ample configuration options for those locations a full controller or Ethernet run is not optimal.&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
V1.2 - Initial Release&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:#:PixelExtender-Step13.jpg|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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11742</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11742"/>
		<updated>2014-06-09T17:08:30Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Revision History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
V1.2 - Initial Release&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:#:PixelExtender-Step13.jpg|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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Controllers&amp;diff=11534</id>
		<title>Controllers</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Controllers&amp;diff=11534"/>
		<updated>2014-03-25T13:50:26Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Dumb RGB DC Controllers Feature Comparisons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Intro=&lt;br /&gt;
There are many different types of controllers used for RGB lighting effects.  The most common fall into two different categories: &lt;br /&gt;
*Pixel Controllers &lt;br /&gt;
*Dumb RGB Controllers.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The different controllers also can be broken into categories based on the type of data communications protocols used to speak to them from the sequencing computer.  The main categories of communications protocols are:&lt;br /&gt;
* [[Renard]] (using either RS232-serial or RS485)&lt;br /&gt;
* [[E1.31_(Streaming-ACN)_Protocol|E1.31]] (DMX over Ethernet)&lt;br /&gt;
* [[DMX]] A traditional stage lighting protocol&lt;br /&gt;
* Programs stored on SD memory cards &lt;br /&gt;
* Lightorama  LOR compatable gear&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When choosing a Pixel controller it is important that you confirm that your selection is compatible with you system design.  Critical properties to consider include are:&lt;br /&gt;
* Communications Protocol (E1.31, Renard, DMX, LOR, Etc.)&lt;br /&gt;
* [[Choosing_a_Pixel_Voltage:_5V_vs_12V|Pixel Voltage]]  (5VDC vs 12VDC)&lt;br /&gt;
* [[Different_Styles_of_Pixels|Pixel Type]] (WS2801, WS2811, GECE, LOR, Etc.)&lt;br /&gt;
* Number of Pixels to be Controlled&lt;br /&gt;
* Number of Connectors and Number of Strings that can be Physically Connected&lt;br /&gt;
* Advanced Features&lt;br /&gt;
** Grouping (ability to treat multiple Pixels as one)&lt;br /&gt;
** RGB Ordering (ability to correct the physical RGB order to match the software sequence order)&lt;br /&gt;
** ZigZag (Ability to treat physical strings as multiple logical strings)&lt;br /&gt;
** Reverse order (ability to reorder the channels on a string so the most distant one is the first channel)&lt;br /&gt;
** Etc.&lt;br /&gt;
&lt;br /&gt;
Generally you also need to add an [[Enclosures|Enclosure]] to the Pixel Controller to protect it from the weather.   You will also need a [[Power Supplies|Power Supply]] to power the Pixel Controller and Pixels.  There are several ways to connect the [[Power_Injection|Power wiring]]  and there are also several types of [[Pixel Connectors]] that can be used to simplify the wiring.&lt;br /&gt;
&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 PAGE IS UNDER CONSTRUCTION AND IS NOT COMPLETE!!&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These are selected Pixel Controllers and other devices from the various vendors with a mix of properties.  Visit their sites for the latest information and to see their entire product catalog.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;PLEASE CONFIRM ALL DETAILS WITH VENDOR BEFORE ORDERING!! ALL OF THIS DATA IS SUBJECT TO CONSTANT CHANGE AND MAY BE WRONG!!!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Pricing is in US $.  Pricing is as of 1-29-13.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;PRICING DOES NOT INCLUDE SHIPPING, TAXES OR IMPORT DUTIES!&#039;&#039;&#039;  &lt;br /&gt;
&lt;br /&gt;
Shipping from overseas can be expensive, check with your vendor.&lt;br /&gt;
&lt;br /&gt;
=PIXEL CONTROLLERS=&lt;br /&gt;
==&#039;&#039;&#039;Renard Protocol (RS232 or RS485)to SPI (Pixel Communication)&#039;&#039;&#039;==&lt;br /&gt;
&#039;&#039;&#039;[[Renard_PX1_Pixel_Controller|Renard PX1 Pixel Controller]]&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
The Renard PX1 was designed by [http://doityourselfchristmas.com/forums/member.php?9-P-Short Phil Short] as an inexpensive Pixel controller designed to work with standard Renard systems.  It can be daisy chained with other Renard controllers. The PX1 provides a low cost solution that allows a user to add pixels to an existing display setup using just a simple Renard setup.&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;E1.31 (Ethernet) to SPI (Pixel Communications)&#039;&#039;&#039;==&lt;br /&gt;
These interfaces accept an [[E1.31_(Streaming-ACN)_Protocol|E1.31 (Ethernet)]] input and typically drive one or more pixel strings.&lt;br /&gt;
&lt;br /&gt;
===[http://www.sandevices.com SanDevices]===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?4668-jstjohnz jstjohnz])&lt;br /&gt;
&lt;br /&gt;
[http://sandevices.com/documents/E68x_Controller_Pixel_Config.pdf E68x Configuration Guide]&lt;br /&gt;
&lt;br /&gt;
[http://www.sandevices.com/downloads.html Firmware Updates]&lt;br /&gt;
&lt;br /&gt;
[[E68X-to-DMX#Converter_Configuration]]&lt;br /&gt;
&lt;br /&gt;
Default IP Address: 192.168.1.206&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Model || Max Pixels || DMX Universes || Pixels Supported || Output Connectors || Max Channels || DMX Universes per Output || Image || Link || Price || Manual || Note&lt;br /&gt;
|-&lt;br /&gt;
| E6804-4 || 2040 || 7Multicast / 12Unicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 4 Fused (1x4 Electrical, 4x1 Logical)  || 6120 || Up to 12 || || [http://sandevices.com/E6804Info.html link] ||  Assembled/Tested: $99, Full Kit: Price $69 [http://doityourselfchristmas.com/forums/showthread.php?26225-E6804-4-port-pixel-controller Presale]||  [http://sandevices.com/documents/SanDevices_E6804_Pixel_Controller_Operating_Manual.pdf Owner&#039;s] [http://sandevices.com/documents/SanDevices_E6804_Assembly_Manual.pdf Assembly] || Size is 2.5&amp;quot; x 4&amp;quot;, mounting holes on 2&amp;quot;x3&amp;quot; centers, compatible with CG series enclosures. [http://doityourselfchristmas.com/forums/showthread.php?25504-New-Pixel-Controller&amp;amp;p=258848#post258848 Announcement ]&lt;br /&gt;
|-&lt;br /&gt;
| PS-1 || 1020 || 6Multicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical)  || 3060 || Up to 6 || || [http://sandevices.com/PixelSystem1.html link] ||  Turnkey System: $399 || [http://sandevices.com/documents/PS1_Users_Guide.pdf Owner&#039;s ]  || Assembled E682 with power supply in an Enclosure&lt;br /&gt;
|-&lt;br /&gt;
| E682-12 || 2040 || 6Multicast / 12Unicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 6120 || Up to 12 || || [http://www.sandevices.com/E681info.html link] ||  Assembled/Tested: $180, Full Kit: Price $109  || [http://sandevices.com/documents/E682_Operating_Manual.pdf Owner&#039;s ]  [http://sandevices.com/documents/E682_Assembly_Instructions.pdf Assembly ] ||To be released shortly&lt;br /&gt;
|-&lt;br /&gt;
| E682-6 || 1020 || 6Multicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 3060 || Up to 6 || || [http://www.sandevices.com/E681info.html link] ||  Assembled/Tested: $180, Full Kit: Price $109  || [http://sandevices.com/documents/E682_Operating_Manual.pdf Owner&#039;s ] [http://sandevices.com/documents/E682_Assembly_Instructions.pdf Assembly ] || Original E682, Before Firmware Upgrade&lt;br /&gt;
|-&lt;br /&gt;
| E681-12 || 2040 || 6Multicast / 12Unicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 6120 || Up to 12 || || [http://www.sandevices.com/E681info.html link] ||  No Longer Available  || [http://sandevices.com/documents/E681_opman.pdf Owner&#039;s ] [http://sandevices.com/documents/E681_Assembly_Instructions.pdf Assembly ] || Firmware To be released shortly, requires [http://www.sandevices.com/UPG1.html UP1 upgrade]&lt;br /&gt;
|-&lt;br /&gt;
| E681-6 || 1020 || 6Multicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 3060 || Up to 6 || || [http://www.sandevices.com/E681info.html link] ||  No Longer Available  || [http://sandevices.com/documents/E681_opman.pdf Owner&#039;s ] [http://sandevices.com/documents/E681_Assembly_Instructions.pdf Assembly ] || Original E681, with Firmware Upgrade and [http://www.sandevices.com/UPG1.html UP1 upgrade]&lt;br /&gt;
|-&lt;br /&gt;
| E681-4 || 680 || 4Multicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 2040 || Up to 4 || || [http://www.sandevices.com/E681info.html link] ||  No Longer Available  || [http://sandevices.com/documents/E681_opman.pdf Owner&#039;s ] [http://sandevices.com/documents/E681_Assembly_Instructions.pdf Assembly ] || Original E681, without Firmware Upgrade and without [http://www.sandevices.com/UPG1.html UP1 upgrade]&lt;br /&gt;
|-&lt;br /&gt;
| E680-12 || 2040 || 6Multicast / 12Unicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 6120 || Up to 12 || || [http://www.sandevices.com/E680Info.html link] ||  Partial Kit: $19 (PC Board + EEPROM) needs additional parts to function  || [http://sandevices.com/documents/e680_opman.pdf Owner&#039;s ] [http://sandevices.com/documents/e680_assemman.pdf Assembly ] ||To be released shortly, requires [http://www.sandevices.com/UPG1.html UP1 upgrade]&lt;br /&gt;
|-&lt;br /&gt;
| E680-6 || 1020 || 6Multicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 3060 || Up to 6 || || [http://www.sandevices.com/E680Info.html link] ||  Partial Kit: $19 (PC Board + EEPROM) needs additional parts to function || [http://sandevices.com/documents/e680_opman.pdf Owner&#039;s ] [http://sandevices.com/documents/e680_assemman.pdf Assembly ] || Original E680, with Firmware Upgrade and [http://www.sandevices.com/UPG1.html UP1 upgrade]&lt;br /&gt;
|-&lt;br /&gt;
| E680-4 || 680 || 4Multicast || GECE, Native DMX, TM1804, 1903, WS2801, WS2811, TLS3001, CYT3005, LPD6803(+8bit), 8806, 9813, and others|| 16 Fused (2x8 Electrical, 4x4 Logical) || 2040 || Up to 4 || || [http://www.sandevices.com/E680Info.html link] ||  Partial Kit: $19 (PC Board + EEPROM) needs additional parts to function || [http://sandevices.com/documents/e680_opman.pdf Owner&#039;s ] [http://sandevices.com/documents/e680_assemman.pdf Assembly ] || Original E680, without Firmware Upgrade and without [http://www.sandevices.com/UPG1.html UP1 upgrade]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===[http://www.j1sys.com/ Joshua 1 Systems (J1SYS)]===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?5441-j1sys j1sys])&lt;br /&gt;
&lt;br /&gt;
[http://www.j1sys.com/assets/ecg-px-v2.0a.swf Tutorial Video]&lt;br /&gt;
&lt;br /&gt;
[https://www.youtube.com/watch?v=3zJtKlOtI4Y Setup Video]&lt;br /&gt;
&lt;br /&gt;
[http://auschristmaslighting.com/forums/index.php/topic,2232.0.html  Unofficial Users Manual]&lt;br /&gt;
&lt;br /&gt;
Default IP Address: 10.10.10.10&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Model || Max Pixels || DMX Universes || Pixels Supported || Output Connectors || Max Channels || DMX Universes per Output || Image || Link || Price || Manual || Note&lt;br /&gt;
|-&lt;br /&gt;
| ECG-P12R || 2040 || 12Unicast || LPD6803, WS2801, WS2811, TM180x, TLS3001 || 12 Fused (2x6 Electrical, 3x4 Logical)  || 6120 || 1 || || [http://www.j1sys.com/ecg-p12r/ link] ||  Assembled Board: $175 || [http://www.j1sys.com/assets/PIXAD8-Guide-v0.1.pdf  Owner&#039;s ] [http://www.j1sys.com/assets/p12r-notes.pdf  Notes ]  || &lt;br /&gt;
|-&lt;br /&gt;
| ECG-PIXAD8 || 1360 || 8Unicast || LPD6803, WS2801, WS2811, TM180x, TLS3001|| 8 Fused (2x4 Electrical, 2x4 Logical) || 4080 || 1 || || [http://www.j1sys.com/ecg-pixad8/ link] ||  Assembled Board: $155  || [http://www.j1sys.com/assets/PIXAD8-Guide-v0.1.pdf  Owner&#039;s ] ||&lt;br /&gt;
|-&lt;br /&gt;
| ECG-P2 || 1360 || 8Unicast || LPD6803, WS2801, WS2811, TM180x, TLS3001|| 2 Unfused (2x1 Electrical, 2x1 Logical) || 4080 || 4 || || [http://www.j1sys.com/ecg-p2/ link] ||  Assembled Board: $68, Assembled Board w/case: $77  || [http://www.j1sys.com/assets/PIXAD8-Guide-v0.1.pdf  Owner&#039;s ] ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===[http://stellascapes.com Stellascapes] ===&lt;br /&gt;
(New Zealand Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?491-mrpackethead mrpackethead])&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Model || Max Pixels || DMX Universes || Pixels Supported || Output Connectors || Max Channels || DMX Universes per Output || Image || Link || Price || Manual || Note&lt;br /&gt;
|-&lt;br /&gt;
| E16-II Green || 672 || 6Unicast || Stella-green || 16 Fused (? Electrical, ? Logical)  || 2016 || ? || || [http://www.stellascapes.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=55&amp;amp;Itemid=62 link] ||  Assembled Board: $1296 ||   ||16 Character LCD Display for diagnostics and identification information. &lt;br /&gt;
|-&lt;br /&gt;
| E16-II Commercial || 672 || 6Unicast || Stella-black || 16 Fused (? Electrical, ? Logical)  || 2016 || ? || || [http://www.stellascapes.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=55&amp;amp;Itemid=62 link] ||  Assembled Board: $1995 ||   ||With power supply and 16 400mm &amp;quot;tails&amp;quot; with waterproof screw up connectors &lt;br /&gt;
|-&lt;br /&gt;
| E16-II Pro|| 672 || 6Unicast || Stella-black || 16 Fused (? Electrical, ? Logical)  || 2016 || ? || || [http://www.stellascapes.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=55&amp;amp;Itemid=62 link] ||  Assembled Board: $?? ||   ||With power supply and Neutrik XLR, power and ethernet chasis connectors&lt;br /&gt;
|-&lt;br /&gt;
| E2|| 170 || 1Unicast || Stella-black || 2 ?  || 512 || ? || || [http://www.stellascapes.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=55&amp;amp;Itemid=62 link] ||  Assembled Board: $?? ||   ||With power supply,operates on low voltage DC (12-48V)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;DMX512 to SPI&#039;&#039;&#039;==&lt;br /&gt;
These interfaces accept a DMX input and typically drive one or more pixel strings.&lt;br /&gt;
===[http://www.j1sys.com/ Joshua 1 Systems (J1SYS)]===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?5441-j1sys j1sys])&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Model || Max Pixels || DMX Universes || Pixels Supported || Output Connectors || Max Channels || DMX Universes per Output || Image || Link || Price || Manual || Note&lt;br /&gt;
|-&lt;br /&gt;
| DCG-P2 || 170/680* || 1DMX/*4HyperDMX|| LPD6803, WS2801, WS2811, TM180x, TLS3001 || 2 Unfused (1x2 Electrical, 1x2 Logical)  || 512DMX/*2048HyperDMX || 1 || || [http://www.j1sys.com link] ||  Assembled Board: $53 ||   ||2 Pixel Outputs share 1 DMX or 4 HyperDmx input channels &lt;br /&gt;
|-&lt;br /&gt;
| uDCG-P2 || 170/680* || 1DMX/*4HyperDMX|| LPD6803, WS2801, WS2811, TM180x, TLS3001 || 2 Unfused (1x2 Electrical, 1x2 Logical)  || 512DMX/*2048HyperDMX || 1 || || [http://www.j1sys.com link] ||  Assembled Board: $42, Assembled Board w/Case: $48 ||   ||2 Pixel Outputs share 1 DMX or 4 HyperDmx input channels &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===[http://www.aliexpress.com/store/701799 Ray Wu] ===&lt;br /&gt;
(China Based)&lt;br /&gt;
&lt;br /&gt;
*[http://www.aliexpress.com/store/product/Mini-protocol-Decoder-DMX-to-WS2801-512-dmx-address-decoded/701799_440556828.html Mini protocol Decoder;DMX to WS2801,512 dmx address decoded] [http://doityourselfchristmas.com/wiki/images/f/f5/Onumen_Manual.pdf    Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/DD-100-series-mini-DMX-protocol-decoder-support-WS2801-protocol-control-signal/701799_340705630.html DD-100 series mini DMX protocol decoder;support WS2801 protocol control signal]  [http://doityourselfchristmas.com/wiki/images/f/f5/Onumen_Manual.pdf    Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/LT-DMX-1809-WS2811-DMX-Decoder-support-WS2811-TM1804-TM1809-TM1812-driving-IC-DC5V-24V-input/701799_583679340.html  LT-DMX-1809(WS2811) DMX Decoder;support WS2811,TM1804,TM1809,TM1812 driving IC;DC5V-24V input] [http://doityourselfchristmas.com/wiki/images/a/ad/LT-1809_DMX512_DECODER.pdf  Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/LT-DMX-2801-DMX-SPI-Decoder-support-WS2801-WS2803-drving-IC/701799_509914025.html LT-DMX-2801 DMX-SPI Decoder;support WS2801,WS2803 drving IC] [http://doityourselfchristmas.com/wiki/images/6/67/LT-2801_DMX512_DECODER.pdf   Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/LT-DMX-3001-DMX-SPI-Decoder-support-TLS3001-TLS3002-driving-IC/701799_509913931.html LT-DMX-3001 DMX-SPI Decoder;support TLS3001, TLS3002 driving IC]  [http://doityourselfchristmas.com/wiki/images/f/f0/LT-3001_DMX512_DECODER.pdf   Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/LT-6803-DMX-Decoder-DC5-24V-input-LPD6803-specific-protocol-output-signal-Max256-steps/701799_314083682.html LT-6803 DMX Decoder;DC5-24V input;LPD6803 specific protocol output signal;Max256 steps] [http://doityourselfchristmas.com/wiki/images/3/3d/LT-6803_DMX512_DECODER.pdf   Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/LT-DMX-9813-DMX-SPI-Decoder-support-P9813-drving-IC/701799_509914126.html LT-DMX-9813 DMX-SPI Decoder;support P9813 drving IC] [[http://doityourselfchristmas.com/wiki/images/3/3d/LT-6803_DMX512_DECODER.pdf   Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/DD-1000-series-DMX-protocol-decoder-support-WS2801-IC-can-decodering-512-address/701799_340702410.html DD-1000 series DMX protocol decoder;support WS2801 IC;can decodering 512 address]  [http://doityourselfchristmas.com/wiki/images/f/f5/Onumen_Manual.pdf    Manual]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/DD-1000-series-DMX-protocol-decoder-support-LPD6803IC-signal-can-decodering-512-address/701799_340702107.html DD-1000 series DMX protocol decoder;support LPD6803IC signal;can decodering 512 address]  [http://doityourselfchristmas.com/wiki/images/f/f5/Onumen_Manual.pdf    Manual]&lt;br /&gt;
&lt;br /&gt;
===[http://www.holidaycoro.com HolidayCoro] ===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?3828-dmoore dmoore])&lt;br /&gt;
*[http://www.holidaycoro.com/product-p/611.htm RS-485 DMX to SPI Pixel Decoder / Controller for 2811/2801/6803/1804/3001 5v and 12v Pixels]&lt;br /&gt;
&lt;br /&gt;
===[http://diybllc.com/ DIYB] ===&lt;br /&gt;
(USA based) Run by DIYC user [http://doityourselfchristmas.com/forums/member.php?8235-charleskerr charleskerr]&lt;br /&gt;
*[http://diybllc.com/LED-Pixel-String-Controller-5-volt-DIYB-LCPC-01.htm DMX to SPI Pixel Controller]&lt;br /&gt;
&lt;br /&gt;
===[http://www.electron-design.ru/ Electron Design] ===&lt;br /&gt;
(Israel based)&lt;br /&gt;
*[http://www.ebay.com/itm/321131195346 Combination Dumb RGB and DMX to SPI Pixel Decoder / Controller]&lt;br /&gt;
&lt;br /&gt;
===[https://www.audiovisualdevices.com.au/ AVD]===&lt;br /&gt;
(Australia Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?4449-David_AVD David_AVD])&lt;br /&gt;
* [https://www.audiovisualdevices.com.au/viewprod.php?catid=&amp;amp;productid=APC718 Audio Visual Devices APC718]  Single SPI (2801 / 6803) output&lt;br /&gt;
[http://auschristmaslighting.com/wiki/APC718 ACL Wiki ]&lt;br /&gt;
&lt;br /&gt;
[http://auschristmaslighting.com/forums/index.php/topic,1243.0.html  ACL Thread]&lt;br /&gt;
&lt;br /&gt;
===[http://auschristmaslighting.com/ ACL]===&lt;br /&gt;
* [http://forums.auschristmaslighting.com/index.php/board,34.0.html TP3244 Pixel Driver] 4 SPI (2801 / 6803) outputs&lt;br /&gt;
&lt;br /&gt;
The Tiger Protocol Bridge (TigerPB) TP3212 is a small controller for use with RGB LED lights and LED strips that utilise driver chips like the 6803/2801/3005. These are the currently targeted protocols and it is possible that other 2-wire and single wire protocols could be supported with firmware upgrades. This will provide future proofing of your controller.&lt;br /&gt;
&lt;br /&gt;
The initial release will accept a standard DMX512A data stream and provide control for 170 RGB Pixels (510ch). There will be dual buffered outputs that will allow you to split the 170 pixels into say 100/70 and run them in different directions and yet control them as a single 170 pixel string.&lt;br /&gt;
Each dual buffered output will also allow for the parallel connection of the same number of pixels allowing for two strings to be used with the same patterns. If these are run in opposite directions they would provide for mirrored effects.&lt;br /&gt;
Each of the Dual outputs will be able to drive different protocols if required.&lt;br /&gt;
&lt;br /&gt;
If ran with ECG product line from http://www.j1sys.com you can use hyper-DMX and this controller can be expanded to running 4 Universe&#039;s off each controller.&lt;br /&gt;
&lt;br /&gt;
More info to Follow and at this point &#039;&#039;&#039;this controller is no longer sold&#039;&#039;&#039;.  It has been talked about coming back out.  As the information comes in it will be updated.  If you can get one used, they are still very nice units and work well.&lt;br /&gt;
&lt;br /&gt;
More info at http://auschristmaslighting.com/forums/index.php/board,34.0.html&lt;br /&gt;
&lt;br /&gt;
===Onumen===&lt;br /&gt;
* [http://auschristmaslighting.com/wiki/Controllers#Onumen Onumen Controllers] (note that the start address of the DPP controllers cannot be fixed)&lt;br /&gt;
&lt;br /&gt;
===[http://shop.martinxmas.com/ RPM]===&lt;br /&gt;
(USA Based run by DIYC member [http://doityourselfchristmas.com/forums/member.php?1269-RPM RPM])&lt;br /&gt;
* [http://doityourselfchristmas.com/forums/showthread.php?15286-DMX-to-WS2801-Pixel-Bridge RPM Pixel Bridge]&lt;br /&gt;
&lt;br /&gt;
===[http://stellascapes.com Stellascapes] ===&lt;br /&gt;
(New Zealand Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?491-mrpackethead mrpackethead])&lt;br /&gt;
*T3:  DMX512 - SPI Bridge&lt;br /&gt;
The T3 controller provides a bridge between DMX512 and 4 strings of RGB pixels. &lt;br /&gt;
&lt;br /&gt;
More details at http://www.stellascapes.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=55&amp;amp;Itemid=62&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;SD Memory Card to SPI&#039;&#039;&#039; ==&lt;br /&gt;
===[http://www.aliexpress.com/store/701799 Ray Wu] ===&lt;br /&gt;
(China Based)&lt;br /&gt;
&lt;br /&gt;
*[http://www.aliexpress.com/store/product/SD-LED-pixel-light-controller-support2-3-4wire/701799_404060519.html SD LED pixel light controller;support2,3,4wire]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/led-controller-for-WS2801-IC-dream-color-led-flexible-strip/701799_331817904.html led controller for WS2801 IC dream color led flexible strip]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/SD-card-DMX-compatible-intelligence-controller-for-pixel-RGB-module-support-CYT3005-IC-512-output-gray/701799_320682984.html SD card-DMX compatible-intelligence controller for pixel RGB module,support CYT3005 IC.512 output gray scale;Max2048 pixels]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-100K-B-SD-card-led-pixel-controller-AC85-265V-input/701799_533617766.html T-100K-B SD card led pixel controller;AC85-265V input]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-200K-led-pixel-controller-can-be-controlled-via-PC-suppor-many-kinds-of-IC/701799_497637885.html T-200K online led pixel controller,can be controlled via PC;suppor many kinds of IC;8ports*512pixels=4096pixels]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-300K-SD-card-led-pixel-controller-AC85-265V-input-can-control-more-than-6000pixels-via/701799_570149882.html T-300K;SD card led pixel controller;AC85-265V input;can control more than 6000pixels via PC,8 ports output]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-1000A-LED-sd-card-pixel-controller-DC5-24V-input/701799_683082725.html T-1000A,LED sd card pixel controller,DC5-24V input]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-1000B-led-pixel-controller-support-WS2801-LPD6803-WS2811-TM1804-TM1809-LPD8806-Etc-max-2048pixels-controlled/701799_715270878.html T-1000B,led pixel controller,support WS2801,LPD6803,WS2811,TM1804,TM1809,LPD8806.Etc;max 2048pixels controlled]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-1000S-SD-card-led-pixel-controller-2012-new-version/701799_533601713.html T-1000S SD card led pixel controller,2012 new version]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-1000Stand-SD-card-led-pixel-controller-2012-new-version-AC110V-220V-input/701799_533604220.html T-1000Stand SD card led pixel controller,2012 new version;AC110V/220V input]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-4000-LED-SD-card-led-pixel-controller-can-max-control-4096-pixels/701799_533608089.html T-4000 LED SD card led pixel controller;can max control 4096 pixels]&lt;br /&gt;
*[http://www.aliexpress.com/store/product/T-8000C-SD-card-led-pixel-controller-AC85-265V-input/701799_533612960.html T-8000C SD card led pixel controller;AC85-265V input]&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;Light-O-Rama (LOR) to SPI&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
===[http://www.http://www.lightorama.com Light-O-Rama (LOR)]===&lt;br /&gt;
(USA Based)&lt;br /&gt;
*[http://store.lightorama.com/cc100pisetwi.html Cosmic Color Pixels]&lt;br /&gt;
*[http://store.lightorama.com/cc100busetwi.html Cosmic Color Bulbs]&lt;br /&gt;
*[http://store.lightorama.com/cocori.html Cosmic Color Strip]&lt;br /&gt;
&lt;br /&gt;
=PIXEL Extenders=&lt;br /&gt;
===[http://www.j1sys.com/ Joshua 1 Systems (J1SYS)]===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?5441-j1sys j1sys])&lt;br /&gt;
&lt;br /&gt;
*ECG-PPX&lt;br /&gt;
ECG-PPX is a combination of small adapter boards that can be used in conjunction with our pixel oriented products (PIXAD8, P12R, etc.) to extend the pixel signals over much longer distances. They should also work with most other brands of pixel drivers. The ECG-PPX system also will distribute a modest power envelope over the same cable for optionally powering the pixels without the need for local power supplies at the pixel strings.&lt;br /&gt;
More details at http://www.j1sys.com/ecg-ppx/&lt;br /&gt;
*ECG-PPD-A – Powered Pixel Driver - 7VDC – 12VDC input range&lt;br /&gt;
*ECG-PPD-B – Powered Pixel Driver - 7VDC – 40VDC input range&lt;br /&gt;
*ECG-PPD-C – 4 Channel Powered Pixel Driver - 7VDC – 40VDC input range on Channel 1&lt;br /&gt;
*ECG-PPR-A – Multi-Mode Powered Pixel Receiver&lt;br /&gt;
*ECG-PPI-A – Powered Pixel Injector - 7VDC-40VDC Input, 5VDC 1.5A output&lt;br /&gt;
&lt;br /&gt;
=E1.31 Bridges and DMX Dongles=&lt;br /&gt;
==&#039;&#039;&#039;E1.31 (Ethernet) to DMX or Renard Output&#039;&#039;&#039;==&lt;br /&gt;
===[http://www.diyledexpress.com DIYLEDEXPRESS]===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?2860-tjetzer tjetzer])&lt;br /&gt;
&lt;br /&gt;
*[http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=157 6 Port E1.31 Bridge]&lt;br /&gt;
&lt;br /&gt;
===[http://www.j1sys.com/ Joshua 1 Systems (J1SYS)]===&lt;br /&gt;
(USA Based run by DIYC user [http://doityourselfchristmas.com/forums/member.php?5441-j1sys j1sys])&lt;br /&gt;
&lt;br /&gt;
*ECG-D8 (Under development)&lt;br /&gt;
*[http://www.j1sys.com/ecg-dr4/ ECG-DR4]&lt;br /&gt;
*[http://www.j1sys.com/ecg-d4/ ECG-D4]&lt;br /&gt;
*[http://www.j1sys.com/ecg-d2/ ECG-D2]&lt;br /&gt;
&lt;br /&gt;
===[http://shop.martinxmas.com/ RPM]===&lt;br /&gt;
(USA Based run by DIYC member [http://doityourselfchristmas.com/forums/member.php?1269-RPM RPM])&lt;br /&gt;
&lt;br /&gt;
*[http://shop.martinxmas.com/product.php?id_product=43 E1.31 to DMX Bridge]&lt;br /&gt;
&lt;br /&gt;
[http://doityourselfchristmas.com/forums/showthread.php?15873-E1-31-(sACN)-to-DMX-Bridge Discussion Thread]&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;&#039;USB to DMX512 Output&#039;&#039;&#039;==&lt;br /&gt;
USB DMX dongles are commonly used in conjunction with PC software to output a single universe (512 channels) of DMX.&lt;br /&gt;
&lt;br /&gt;
* [https://www.audiovisualdevices.com.au/viewprod.php?catid=&amp;amp;productid=USB485RJ-ISO Audio Visual Devices] or http://auschristmaslighting.com/wiki/index.php/USB485RJ-ISO&lt;br /&gt;
* [http://www.enttec.com/index.php?main_menu=Products&amp;amp;pn=70303&amp;amp;show=description Enttec Open DMX USB]&lt;br /&gt;
* [http://www.enttec.com/index.php?main_menu=Products&amp;amp;prod=70304&amp;amp;show=description Enttec DMX USB Pro]&lt;br /&gt;
* [http://shop.martinxmas.com/product.php?id_product=10 RPM DIY USB to DMX Adaptor]&lt;br /&gt;
* [http://www.holidaycoro.com/Enttec-Pro-Compatible-DMX-Dongle-p/53.htm HolidayCoro ActiDongle - Active DMX Dongle (Enttec Pro Compatible)]&lt;br /&gt;
*[http://diylightanimation.com/wiki/index.php?title=Equipment#DMX_Devices RJ&#039;s LYNX DMX DONGLE]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FTDI drivers for dongles:&lt;br /&gt;
* [http://www.ftdichip.com/Drivers/VCP.htm FTDI VCP Drivers]&lt;br /&gt;
* [http://www.ftdichip.com/Documents/InstallGuides.htm Install Guides for FTDI Drivers]&lt;br /&gt;
* [http://doityourselfchristmas.com/forums/showthread.php?17739-FTDI-USB-gt-Serial Updating a FTDI dongle&#039;s EEPROM]&lt;br /&gt;
* [[USB2DMX|USB2DMX (which also goes by the name Yet Another DMX Adapter, or YADA)]]&lt;br /&gt;
&lt;br /&gt;
=Dumb RGB DC Controllers Feature Comparisons=&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ DC Controller Comparison Table&lt;br /&gt;
! Manufacturer&lt;br /&gt;
! Model&lt;br /&gt;
! Pre-built&lt;br /&gt;
! DC Voltage&lt;br /&gt;
! Channels&lt;br /&gt;
! Channel Current&lt;br /&gt;
! Total Current&lt;br /&gt;
! Protocol(s)&lt;br /&gt;
! Total Price&lt;br /&gt;
! Per Ch Price&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.lightorama.com/ Light-O-Rama]&lt;br /&gt;
| [http://store.lightorama.com/cmdedcca.html CMB16D]&lt;br /&gt;
| Yes&lt;br /&gt;
| 5V - 60V&lt;br /&gt;
| 16&lt;br /&gt;
| 4A&lt;br /&gt;
| 20A per 8 Ch&lt;br /&gt;
| LOR, DMX&lt;br /&gt;
| $119.95&lt;br /&gt;
| $7.49&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.lightorama.com/ Light-O-Rama]&lt;br /&gt;
| [http://store.lightorama.com/cmdedcca2.html CMB16D-QC]&lt;br /&gt;
| Yes&lt;br /&gt;
| 5V - 60V&lt;br /&gt;
| 16&lt;br /&gt;
| 4A&lt;br /&gt;
| 20A per 8 Ch&lt;br /&gt;
| LOR, DMX&lt;br /&gt;
| $99.95&lt;br /&gt;
| $6.24&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.tigerdmx.com TigerDMX]&lt;br /&gt;
| [[TigerDMX48]]&lt;br /&gt;
| Yes&lt;br /&gt;
| 9V - 55V&lt;br /&gt;
| 48&lt;br /&gt;
| 2.5A&lt;br /&gt;
| 30A per 24 Ch&lt;br /&gt;
| DMX&lt;br /&gt;
| $145.00&lt;br /&gt;
| $3.02&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.tigerdmx.com TigerDMX]&lt;br /&gt;
| [http://www.tigerdmx.com/tigerdmx120lc.php TigerDMX120LC]&lt;br /&gt;
| Yes&lt;br /&gt;
| 12V - 36V&lt;br /&gt;
| 120&lt;br /&gt;
| 100mA&lt;br /&gt;
| &lt;br /&gt;
| DMX&lt;br /&gt;
| $125.00&lt;br /&gt;
| $1.04&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.audiovisualdevices.com.au AVD]&lt;br /&gt;
| [[DC48]]&lt;br /&gt;
| Yes&lt;br /&gt;
| 12V - 36V&lt;br /&gt;
| 48&lt;br /&gt;
| 2A&lt;br /&gt;
| 20A per 24 Ch&lt;br /&gt;
| DMX&lt;br /&gt;
| $199.00&lt;br /&gt;
| $4.15&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.audiovisualdevices.com.au AVD]&lt;br /&gt;
| [[DC24]]&lt;br /&gt;
| Yes&lt;br /&gt;
| 12V - 36V&lt;br /&gt;
| 24&lt;br /&gt;
| 2A&lt;br /&gt;
| 15A per 12 Ch&lt;br /&gt;
| DMX&lt;br /&gt;
| $129.00&lt;br /&gt;
| $5.38&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.cngdjs.com Audiolight Intl]&lt;br /&gt;
| HD-714 [http://www.holidaycoro.com/product-p/37.htm] [http://www.aliexpress.com/fm-store/701799/209915969-378113147/Easy-DMX-LED-controller-dmx-decoder-driver.html]&lt;br /&gt;
| Yes&lt;br /&gt;
| 12V - 24V&lt;br /&gt;
| 3&lt;br /&gt;
| 2A&lt;br /&gt;
| 6A&lt;br /&gt;
| DMX&lt;br /&gt;
| $8.95&lt;br /&gt;
| $2.98&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.cngdjs.com Audiolight Intl]&lt;br /&gt;
| HD-712 [http://www.holidaycoro.com/product-p/24.htm] [http://www.aliexpress.com/fm-store/701799/209915969-378111925/Easy-DMX-LED-controller-dmx-decoder-driver.html] &lt;br /&gt;
| Yes&lt;br /&gt;
| 12V - 24V&lt;br /&gt;
| 27&lt;br /&gt;
| 1A&lt;br /&gt;
| 15A&lt;br /&gt;
| DMX&lt;br /&gt;
| $44.21&lt;br /&gt;
| $1.64&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.leynew.com Leynew]&lt;br /&gt;
| LN-DMXMODEL-3CH-LV12 [http://www.holidaycoro.com/product-p/26.htm Bare Leads] [http://www.holidaycoro.com/product-p/30.htm CAT5 Input]  [http://www.aliexpress.com/fm-store/701799/209915969-307297826/DMX-512-Module-decoder.html]&lt;br /&gt;
| Yes&lt;br /&gt;
| 12V&lt;br /&gt;
| 3&lt;br /&gt;
| 2A&lt;br /&gt;
| 6A&lt;br /&gt;
| DMX&lt;br /&gt;
| $7.49&lt;br /&gt;
| $2.49&lt;br /&gt;
|-&lt;br /&gt;
| [http://http://www.euchips.com/en/ EUChips]&lt;br /&gt;
| [http://www.aliexpress.com/fm-store/701799/209915969-410843238/DMX512-Decoder-DC12-24V-input-max-3A-each-channel-output.html PX24506]&lt;br /&gt;
| Yes&lt;br /&gt;
| 12V - 24V&lt;br /&gt;
| 3&lt;br /&gt;
| 3A&lt;br /&gt;
| 9A&lt;br /&gt;
| DMX&lt;br /&gt;
| $22.32&lt;br /&gt;
| $7.44&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.xmasinmelb.com/zencart/ wjohn]&lt;br /&gt;
| [[DMX3]]&lt;br /&gt;
| No&lt;br /&gt;
| 9-35vdc&lt;br /&gt;
| 3&lt;br /&gt;
| 2A per Chn&lt;br /&gt;
| up to 6A &lt;br /&gt;
| DMX&lt;br /&gt;
| $9.00&lt;br /&gt;
| $3.00&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.xmasinmelb.com/zencart/ wjohn]&lt;br /&gt;
| [[DMX16DCSSR]]&lt;br /&gt;
| No&lt;br /&gt;
| 12-24vdc&lt;br /&gt;
| 16&lt;br /&gt;
| 2A per Chn&lt;br /&gt;
| up to 10A &lt;br /&gt;
| DMX&lt;br /&gt;
| $48.00&lt;br /&gt;
| $3.00&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.xmasinmelb.com/zencart/ wjohn]&lt;br /&gt;
| [[REN64]]&lt;br /&gt;
| No&lt;br /&gt;
| 9-35vdc&lt;br /&gt;
| 64&lt;br /&gt;
| 2A per Chn&lt;br /&gt;
| up to 7A per SSR&lt;br /&gt;
| RS232/485, DMX&lt;br /&gt;
| $67.50&lt;br /&gt;
| $1.05&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.christmasinshirley.com/wiki/index.php?title=Renard_Main_Page Renard]&lt;br /&gt;
| [http://www.doityourselfchristmas.com/wiki/index.php?title=Ren48LSDv3c Ren48LSD]&lt;br /&gt;
| No&lt;br /&gt;
| 5,9-24vdc&lt;br /&gt;
| 48&lt;br /&gt;
| 400mA&lt;br /&gt;
| 9.6A x 2&lt;br /&gt;
| RS232/485, DMX&lt;br /&gt;
| $44.66&lt;br /&gt;
| $0.93&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.diyledexpress.com/index.php?main_page=index&amp;amp;cPath=35_57 DIYLEDExpress]&lt;br /&gt;
| [http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC Ren24DC]&lt;br /&gt;
| Built or Kit&lt;br /&gt;
| 5,7-24vdc&lt;br /&gt;
| 24&lt;br /&gt;
| 4A&lt;br /&gt;
| 30A x 2&lt;br /&gt;
| RS232/485, DMX&lt;br /&gt;
| $72.10&lt;br /&gt;
| $3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[http://www.aliexpress.com/store/product/DM-103-3-channel-RGB-dmx-constant-voltage-decoder-DC12-24V-input-max-2A-3channel-output/701799_868042910.html DM103 Ray Wu DMX to 3 Channel]&lt;br /&gt;
&lt;br /&gt;
=Related Links=&lt;br /&gt;
[[Different Styles of Pixels]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Pixel Wiring Colors]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Dumb RGB or Intelligent Pixels??]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Things You Will Need To Get Started With Pixels]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Power Supplies]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Pixel Connectors]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Choosing a Pixel Voltage: 5V vs 12V]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Power Injection]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Waterproofing Pixels]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Null Pixels]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[E1.31_(Streaming-ACN)_Protocol|E1.31 Network Setup and Configuration]]&lt;br /&gt;
&lt;br /&gt;
[[Category:RGB]]&lt;br /&gt;
[[Category:Pixel]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11533</id>
		<title>Ren24DC</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11533"/>
		<updated>2014-03-24T18:05:40Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Ren24DC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ren24DC.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;
=Ren24DC Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Ren24DC?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Ren24DC Parts==&lt;br /&gt;
To build the Ren24DC, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_57&amp;amp;products_id=277 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[Ren24DC#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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=35_57&amp;amp;products_id=278 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
The Ren24DC 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:Ren24DC-Step30-Final.jpg|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:Ren24DC-Step1.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 five 0.1uF (100nF) capacitors C1-C5.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step2.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 27K Ohm resistors (red, violet, orange, gold) R1,R2 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step3.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 1K Ohm resistors (brown, black, red, gold) R3,R4 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step4.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 220 Ohm resistors (red, red, brown, gold) R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step5.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step6.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 twenty-four 470 Ohm resistors (yellow, violet, brown, gold) R7,R9,R12,R13,R15,R17,R19,R21,R23,R25,R27,R29,R30,R32,R34,R36,R38,R40,R42,R44,R46,R48,R50,R52,R54 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step7.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 twenty-seven 10K Ohm resistors (brown, black, orange, gold) R8,R10,R12,R14,R16,R18,R20,R22,R24,R26,R28,R30,R31,R33,R35,R37,R39,R41,R43,R45,R47,R49,R51,R53,R55,R56,R57 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step8.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 2.2K Ohm resistors (red, red, red, gold) R58,R59 The resistors are not polarized and can be mounted either way. &#039;&#039;&#039;NOTE: The silkscreen says 680 but the BOM supplies a 2.2K Ohm resistor to work with the full range voltages the board supports. If you use a 680 Ohm resistor keep the voltage under 12V!&#039;&#039;&#039;&lt;br /&gt;
#:[[File:Ren24DC-Step9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D1 (1N5229B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D2 (1N5239B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 8-pin IC sockets for IC4,IC5. Install with the notch to the top. &lt;br /&gt;
#:[[File:Ren24DC-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install three 14-pin IC sockets for IC1,IC2,IC3. Install with the notch to the right.&lt;br /&gt;
#:[[File:Ren24DC-Step13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - (OPTIONAL!! Not needed for the PIC16F1825) Install the clock oscillator OSC1.  The oscillator must be installed in the correct orientation.  The oscillator has three rounded corners and one squared corner, make sure that the squared corner is positioned to match the PCB silkscreen (upper left corner).&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two green LED LED2,LED3. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one red LED LED1. The LED is polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 2-pin vertical headers JP1,JP2. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one dual row 3-pin vertical header JP3. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 3-pin vertical header JP4. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 5-pin vertical header JP5. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten fuse clips.  The fuse clips have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install eight terminal blocks sets for RGB outputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step22.jpg|300px]] &lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 47uF capacitors C6,C7. This capacitor is polarized and must be installed correctly. The capacitor should have a silver/grey stripe on the body to indicate which lead is negative. The positive lead of the capacitor will be the longer lead. Make sure that the positive lead is placed in the pad with the +.&lt;br /&gt;
#:[[File:Ren24DC-Step23.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two RJ45 modular jacks J1,J2.  Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board. &lt;br /&gt;
#:[[File:Ren24DC-Step24.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 left side of the board, aligning with the stripe on the pcb.&lt;br /&gt;
#:[[File:Ren24DC-Step25.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two large terminal blocks for the inputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step26.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 twenty-four MOSFETs. The MOSFETs are polarized and they should be installed with the tab facing the screw terminals.&lt;br /&gt;
#:[[File:Ren24DC-Step27.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 four required jumpers. Default settings are: JP3 - Two jumpers shorting 1/2. JP4 - Make selection on Voltage used. JP5 - Jumper pins 4/5.&lt;br /&gt;
#:[[File:Ren24DC-Step28.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 eight 15A and two 30A Fuses. The Two Green 30A Fuses are installed at the bottom of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step29.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Ren24DC!&lt;br /&gt;
#:[[File:Ren24DC-Step30-Final.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - DMX Termination====&lt;br /&gt;
Install shunt to terminate DMX input&lt;br /&gt;
====JP2 - RS232 Mode====&lt;br /&gt;
Install shunt for RS232 input&lt;br /&gt;
====JP3 - Data Mode====&lt;br /&gt;
Normal Operation Jumper Pins 1/2 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
Thru Operation Jumper Pins 2/3 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
====JP4 - Power Jumper====&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.&lt;br /&gt;
====JP5 - Wireless Header====&lt;br /&gt;
Install shunt on pins 4/5 for normal operation.&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 1 - +5V&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 2 - No Connection&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 3 - GND&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 4 - Data From RS485&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 5 - Data To PIC&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Powering the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Ren24DC, 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 Ren24DC 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 Ren24DC 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11531</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11531"/>
		<updated>2014-03-23T19:00:29Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Pixel Extender */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:#:PixelExtender-Step13.jpg|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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C3. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC1. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11530</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11530"/>
		<updated>2014-03-23T18:33:54Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Pixel Extender */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:#:PixelExtender-Step13.jpg|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;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install the one 680 Ohm resistors (blue, gray, brown, gold) R1 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step1.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 1K Ohm resistors (brown, black, red, gold) R2,R3 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step2.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 27K Ohm resistors (red, violet, orange, gold) R4,R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step3.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step4.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 0.1uF (100nF) capacitors C1-C5. The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:PixelExtender-Step5.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 green LED LED1. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the top hole closest to the mount hole.&lt;br /&gt;
#:[[File:PixelExtender-Step6.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 8-pin IC sockets for IC4,IC5. Install with the notch to the bottom matching the notch on the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step7.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 5v linear regulator. Note the regulator is polarized and the flat side should face the bottom to match the orientation on the silkscreen. NOTE: IF YOU PLAN TO USE 5VDC LOADS, SEE THE DESIGN OPTIONS SECTION BELOW BEFORE INSTALLING THE VOLTAGE REGULATOR.&lt;br /&gt;
#:[[File:PixelExtender-Step8.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 fuse clip. The fuse clip has no polarity to worry about.&lt;br /&gt;
#:[[File:PixelExtender-Step9.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 pixel output block with the notches matching the PCB.&lt;br /&gt;
#:[[File:PixelExtender-Step10.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 terminal block for the power input. Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:PixelExtender-Step11.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 RJ45 modular jacks J1. Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board.&lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step13.jpg&amp;diff=11529</id>
		<title>File:PixelExtender-Step13.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step13.jpg&amp;diff=11529"/>
		<updated>2014-03-23T18:21:23Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step12.jpg&amp;diff=11528</id>
		<title>File:PixelExtender-Step12.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step12.jpg&amp;diff=11528"/>
		<updated>2014-03-23T18:21:09Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step11.jpg&amp;diff=11527</id>
		<title>File:PixelExtender-Step11.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step11.jpg&amp;diff=11527"/>
		<updated>2014-03-23T18:20:50Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step10.jpg&amp;diff=11526</id>
		<title>File:PixelExtender-Step10.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step10.jpg&amp;diff=11526"/>
		<updated>2014-03-23T18:20:36Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step9.jpg&amp;diff=11525</id>
		<title>File:PixelExtender-Step9.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step9.jpg&amp;diff=11525"/>
		<updated>2014-03-23T18:20:21Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step8.jpg&amp;diff=11524</id>
		<title>File:PixelExtender-Step8.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step8.jpg&amp;diff=11524"/>
		<updated>2014-03-23T18:20:10Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step7.jpg&amp;diff=11523</id>
		<title>File:PixelExtender-Step7.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step7.jpg&amp;diff=11523"/>
		<updated>2014-03-23T18:19:57Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step6.jpg&amp;diff=11522</id>
		<title>File:PixelExtender-Step6.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step6.jpg&amp;diff=11522"/>
		<updated>2014-03-23T18:19:46Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step5.jpg&amp;diff=11521</id>
		<title>File:PixelExtender-Step5.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step5.jpg&amp;diff=11521"/>
		<updated>2014-03-23T18:19:35Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step4.jpg&amp;diff=11520</id>
		<title>File:PixelExtender-Step4.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step4.jpg&amp;diff=11520"/>
		<updated>2014-03-23T18:19:23Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step3.jpg&amp;diff=11519</id>
		<title>File:PixelExtender-Step3.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step3.jpg&amp;diff=11519"/>
		<updated>2014-03-23T18:19:10Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step2.jpg&amp;diff=11518</id>
		<title>File:PixelExtender-Step2.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step2.jpg&amp;diff=11518"/>
		<updated>2014-03-23T18:18:56Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step1.jpg&amp;diff=11517</id>
		<title>File:PixelExtender-Step1.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:PixelExtender-Step1.jpg&amp;diff=11517"/>
		<updated>2014-03-23T18:18:38Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11516</id>
		<title>Pixel Extender</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Pixel_Extender&amp;diff=11516"/>
		<updated>2014-03-23T18:18:24Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: Created page with &amp;quot;600px =Disclaimers= The standard disclaimers pertaining to the information contained on this wiki page are listed  here.&amp;lt;br/...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PixelExtender-Step13.jpg|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;
=Pixel Extender Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Pixel Extender?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Pixel Extender Parts==&lt;br /&gt;
To build the Pixel Extender, you need 2 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=22&amp;amp;products_id=279 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=280 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
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:#:[[File:PixelExtender-Step13.jpg|300px]]|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:PixelExtender-Step1.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 &lt;br /&gt;
#:[[File:PixelExtender-Step2.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 &lt;br /&gt;
#:[[File:PixelExtender-Step3.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 &lt;br /&gt;
#:[[File:PixelExtender-Step4.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 &lt;br /&gt;
#:[[File:PixelExtender-Step5.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 &lt;br /&gt;
#:[[File:PixelExtender-Step6.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 &lt;br /&gt;
#:[[File:PixelExtender-Step7.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 &lt;br /&gt;
#:[[File:PixelExtender-Step8.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 &lt;br /&gt;
#:[[File:PixelExtender-Step9.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 &lt;br /&gt;
#:[[File:PixelExtender-Step10.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 &lt;br /&gt;
#:[[File:PixelExtender-Step11.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 &lt;br /&gt;
#:[[File:PixelExtender-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Pixel Extender!&lt;br /&gt;
#:[[File:PixelExtender-Step13.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - 5V Bypass====&lt;br /&gt;
Install shunt instead of 5V Regulator to use with 5V Pixels.&lt;br /&gt;
&lt;br /&gt;
==Powering the Pixel Extender==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Pixel Extender, connected it up to your E1.31 Bridge 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;
&lt;br /&gt;
===Power===&lt;br /&gt;
Measure the voltage supplied to the Pixel Extender 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 Pixel Extender 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11515</id>
		<title>Ren24DC</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11515"/>
		<updated>2014-03-22T20:28:00Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Ren24DC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ren24DC.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;
=Ren24DC Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Ren24DC?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Ren24DC Parts==&lt;br /&gt;
To build the Ren24DC, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_57&amp;amp;products_id=277 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[Ren24DC#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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=35_57&amp;amp;products_id=278 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
The Ren24DC 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:Ren24DC-Step30-Final.jpg|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:Ren24DC-Step1.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 five 0.1uF (100nF) capacitors C1-C5.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step2.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 27K Ohm resistors (red, violet, orange, gold) R1,R2 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step3.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 1K Ohm resistors (brown, black, red, gold) R3,R4 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step4.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 220 Ohm resistors (red, red, brown, gold) R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step5.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step6.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 twenty-four 470 Ohm resistors (yellow, violet, brown, gold) R7,R9,R12,R13,R15,R17,R19,R21,R23,R25,R27,R29,R30,R32,R34,R36,R38,R40,R42,R44,R46,R48,R50,R52,R54 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step7.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 twenty-seven 10K Ohm resistors (brown, black, orange, gold) R8,R10,R12,R14,R16,R18,R20,R22,R24,R26,R28,R30,R31,R33,R35,R37,R39,R41,R43,R45,R47,R49,R51,R53,R55,R56,R57 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step8.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 2.2K Ohm resistors (red, red, red, gold) R58,R59 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D1 (1N5229B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D2 (1N5239B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 8-pin IC sockets for IC4,IC5. Install with the notch to the top. &lt;br /&gt;
#:[[File:Ren24DC-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install three 14-pin IC sockets for IC1,IC2,IC3. Install with the notch to the right.&lt;br /&gt;
#:[[File:Ren24DC-Step13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - (OPTIONAL!! Not needed for the PIC16F1825) Install the clock oscillator OSC1.  The oscillator must be installed in the correct orientation.  The oscillator has three rounded corners and one squared corner, make sure that the squared corner is positioned to match the PCB silkscreen (upper left corner).&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two green LED LED2,LED3. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one red LED LED1. The LED is polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 2-pin vertical headers JP1,JP2. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one dual row 3-pin vertical header JP3. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 3-pin vertical header JP4. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 5-pin vertical header JP5. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten fuse clips.  The fuse clips have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install eight terminal blocks sets for RGB outputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step22.jpg|300px]] &lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 47uF capacitors C6,C7. This capacitor is polarized and must be installed correctly. The capacitor should have a silver/grey stripe on the body to indicate which lead is negative. The positive lead of the capacitor will be the longer lead. Make sure that the positive lead is placed in the pad with the +.&lt;br /&gt;
#:[[File:Ren24DC-Step23.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two RJ45 modular jacks J1,J2.  Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board. &lt;br /&gt;
#:[[File:Ren24DC-Step24.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 left side of the board, aligning with the stripe on the pcb.&lt;br /&gt;
#:[[File:Ren24DC-Step25.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two large terminal blocks for the inputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step26.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 twenty-four MOSFETs. The MOSFETs are polarized and they should be installed with the tab facing the screw terminals.&lt;br /&gt;
#:[[File:Ren24DC-Step27.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 four required jumpers. Default settings are: JP3 - Two jumpers shorting 1/2. JP4 - Make selection on Voltage used. JP5 - Jumper pins 4/5.&lt;br /&gt;
#:[[File:Ren24DC-Step28.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 eight 15A and two 30A Fuses. The Two Green 30A Fuses are installed at the bottom of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step29.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Ren24DC!&lt;br /&gt;
#:[[File:Ren24DC-Step30-Final.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - DMX Termination====&lt;br /&gt;
Install shunt to terminate DMX input&lt;br /&gt;
====JP2 - RS232 Mode====&lt;br /&gt;
Install shunt for RS232 input&lt;br /&gt;
====JP3 - Data Mode====&lt;br /&gt;
Normal Operation Jumper Pins 1/2 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
Thru Operation Jumper Pins 2/3 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
====JP4 - Power Jumper====&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.&lt;br /&gt;
====JP5 - Wireless Header====&lt;br /&gt;
Install shunt on pins 4/5 for normal operation.&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 1 - +5V&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 2 - No Connection&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 3 - GND&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 4 - Data From RS485&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 5 - Data To PIC&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Powering the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Ren24DC, 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 Ren24DC 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 Ren24DC 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11514</id>
		<title>Ren24DC</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11514"/>
		<updated>2014-03-22T20:26:06Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Ren24DC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ren24DC.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;
=Ren24DC Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Ren24DC?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Ren24DC Parts==&lt;br /&gt;
To build the Ren24DC, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_57&amp;amp;products_id=277 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[Ren24DC#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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=35_57&amp;amp;products_id=278 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
The Ren24DC 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:Ren24DC.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:Ren24DC-Step1.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 five 0.1uF (100nF) capacitors C1-C5.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step2.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 27K Ohm resistors (red, violet, orange, gold) R1,R2 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step3.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 1K Ohm resistors (brown, black, red, gold) R3,R4 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step4.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 220 Ohm resistors (red, red, brown, gold) R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step5.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step6.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 twenty-four 470 Ohm resistors (yellow, violet, brown, gold) R7,R9,R12,R13,R15,R17,R19,R21,R23,R25,R27,R29,R30,R32,R34,R36,R38,R40,R42,R44,R46,R48,R50,R52,R54 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step7.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 twenty-seven 10K Ohm resistors (brown, black, orange, gold) R8,R10,R12,R14,R16,R18,R20,R22,R24,R26,R28,R30,R31,R33,R35,R37,R39,R41,R43,R45,R47,R49,R51,R53,R55,R56,R57 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step8.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 2.2K Ohm resistors (red, red, red, gold) R58,R59 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D1 (1N5229B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D2 (1N5239B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 8-pin IC sockets for IC4,IC5. Install with the notch to the top. &lt;br /&gt;
#:[[File:Ren24DC-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install three 14-pin IC sockets for IC1,IC2,IC3. Install with the notch to the right.&lt;br /&gt;
#:[[File:Ren24DC-Step13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - (OPTIONAL!! Not needed for the PIC16F1825) Install the clock oscillator OSC1.  The oscillator must be installed in the correct orientation.  The oscillator has three rounded corners and one squared corner, make sure that the squared corner is positioned to match the PCB silkscreen (upper left corner).&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two green LED LED2,LED3. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one red LED LED1. The LED is polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 2-pin vertical headers JP1,JP2. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one dual row 3-pin vertical header JP3. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 3-pin vertical header JP4. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 5-pin vertical header JP5. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten fuse clips.  The fuse clips have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install eight terminal blocks sets for RGB outputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step22.jpg|300px]] &lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 47uF capacitors C6,C7. This capacitor is polarized and must be installed correctly. The capacitor should have a silver/grey stripe on the body to indicate which lead is negative. The positive lead of the capacitor will be the longer lead. Make sure that the positive lead is placed in the pad with the +.&lt;br /&gt;
#:[[File:Ren24DC-Step23.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two RJ45 modular jacks J1,J2.  Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board. &lt;br /&gt;
#:[[File:Ren24DC-Step24.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 left side of the board, aligning with the stripe on the pcb.&lt;br /&gt;
#:[[File:Ren24DC-Step25.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two large terminal blocks for the inputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step26.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 twenty-four MOSFETs. The MOSFETs are polarized and they should be installed with the tab facing the screw terminals.&lt;br /&gt;
#:[[File:Ren24DC-Step27.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 four required jumpers. Default settings are: JP3 - Two jumpers shorting 1/2. JP4 - Make selection on Voltage used. JP5 - Jumper pins 4/5.&lt;br /&gt;
#:[[File:Ren24DC-Step28.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 eight 15A and two 30A Fuses. The Two Green 30A Fuses are installed at the bottom of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step29.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Congratulations! That completes the construction of the Ren24DC!&lt;br /&gt;
#:[[File:Ren24DC-Step30-Final.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - DMX Termination====&lt;br /&gt;
Install shunt to terminate DMX input&lt;br /&gt;
====JP2 - RS232 Mode====&lt;br /&gt;
Install shunt for RS232 input&lt;br /&gt;
====JP3 - Data Mode====&lt;br /&gt;
Normal Operation Jumper Pins 1/2 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
Thru Operation Jumper Pins 2/3 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
====JP4 - Power Jumper====&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.&lt;br /&gt;
====JP5 - Wireless Header====&lt;br /&gt;
Install shunt on pins 4/5 for normal operation.&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 1 - +5V&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 2 - No Connection&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 3 - GND&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 4 - Data From RS485&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 5 - Data To PIC&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Powering the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Ren24DC, 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 Ren24DC 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 Ren24DC 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11513</id>
		<title>Ren24DC</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11513"/>
		<updated>2014-03-22T20:15:12Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Ren24DC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ren24DC.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;
=Ren24DC Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Ren24DC?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Ren24DC Parts==&lt;br /&gt;
To build the Ren24DC, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_57&amp;amp;products_id=277 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[Ren24DC#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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=35_57&amp;amp;products_id=278 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
The Ren24DC 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:Ren24DC.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:Ren24DC-Step1.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 five 0.1uF (100nF) capacitors C1-C5.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step2.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 27K Ohm resistors (red, violet, orange, gold) R1,R2 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step3.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 1K Ohm resistors (brown, black, red, gold) R3,R4 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step4.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 220 Ohm resistors (red, red, brown, gold) R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step5.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step6.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 twenty-four 470 Ohm resistors (yellow, violet, brown, gold) R7,R9,R12,R13,R15,R17,R19,R21,R23,R25,R27,R29,R30,R32,R34,R36,R38,R40,R42,R44,R46,R48,R50,R52,R54 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step7.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 twenty-seven 10K Ohm resistors (brown, black, orange, gold) R8,R10,R12,R14,R16,R18,R20,R22,R24,R26,R28,R30,R31,R33,R35,R37,R39,R41,R43,R45,R47,R49,R51,R53,R55,R56,R57 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step8.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 2.2K Ohm resistors (red, red, red, gold) R58,R59 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D1 (1N5229B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D2 (1N5239B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 8-pin IC sockets for IC4,IC5. Install with the notch to the top. &lt;br /&gt;
#:[[File:Ren24DC-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install three 14-pin IC sockets for IC1,IC2,IC3. Install with the notch to the right.&lt;br /&gt;
#:[[File:Ren24DC-Step13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - (OPTIONAL!! Not needed for the PIC16F1825) Install the clock oscillator OSC1.  The oscillator must be installed in the correct orientation.  The oscillator has three rounded corners and one squared corner, make sure that the squared corner is positioned to match the PCB silkscreen (upper left corner).&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two green LED LED2,LED3. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one red LED LED1. The LED is polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 2-pin vertical headers JP1,JP2. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one dual row 3-pin vertical header JP3. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 3-pin vertical header JP4. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 5-pin vertical header JP5. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten fuse clips.  The fuse clips have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install eight terminal blocks sets for RGB outputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step22.jpg|300px]] &lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 47uF capacitors C6,C7. This capacitor is polarized and must be installed correctly. The capacitor should have a silver/grey stripe on the body to indicate which lead is negative. The positive lead of the capacitor will be the longer lead. Make sure that the positive lead is placed in the pad with the +.&lt;br /&gt;
#:[[File:Ren24DC-Step23.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two large terminal blocks for the inputs.  Install with the openings for the wires facing off the edge of the board.#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten RJ45 modular jacks J1,J2.  Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#:[[File:Ren24DC-Step24.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step25.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step26.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step27.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step28.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step29.jpg|300px]]&lt;br /&gt;
Congratulations! That completes the construction of the Ren24DC!&lt;br /&gt;
#:[[File:Ren24DC-Step30-Final.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - DMX Termination====&lt;br /&gt;
Install shunt to terminate DMX input&lt;br /&gt;
====JP2 - RS232 Mode====&lt;br /&gt;
Install shunt for RS232 input&lt;br /&gt;
====JP3 - Data Mode====&lt;br /&gt;
Normal Operation Jumper Pins 1/2 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
Thru Operation Jumper Pins 2/3 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
====JP4 - Power Jumper====&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.&lt;br /&gt;
====JP5 - Wireless Header====&lt;br /&gt;
Install shunt on pins 4/5 for normal operation.&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 1 - +5V&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 2 - No Connection&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 3 - GND&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 4 - Data From RS485&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 5 - Data To PIC&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Powering the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Ren24DC, 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 Ren24DC 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 Ren24DC 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11512</id>
		<title>Ren24DC</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11512"/>
		<updated>2014-03-22T19:57:03Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: /* Building the Ren24DC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ren24DC.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;
=Ren24DC Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Ren24DC?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Ren24DC Parts==&lt;br /&gt;
To build the Ren24DC, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_57&amp;amp;products_id=277 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[Ren24DC#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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=35_57&amp;amp;products_id=278 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
The Ren24DC 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:Ren24DC.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:Ren24DC-Step1.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 five 0.1uF (100nF) capacitors C1-C5.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step2.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 27K Ohm resistors (red, violet, orange, gold) R1,R2 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step3.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 1K Ohm resistors (brown, black, red, gold) R3,R4 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step4.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 220 Ohm resistors (red, red, brown, gold) R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step5.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 120 Ohm resistor (brown, red, brown, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step6.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 twenty-four 470 Ohm resistors (yellow, violet, brown, gold) R7,R9,R12,R13,R15,R17,R19,R21,R23,R25,R27,R29,R30,R32,R34,R36,R38,R40,R42,R44,R46,R48,R50,R52,R54 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step7.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 twenty-seven 10K Ohm resistors (brown, black, orange, gold) R8,R10,R12,R14,R16,R18,R20,R22,R24,R26,R28,R30,R31,R33,R35,R37,R39,R41,R43,R45,R47,R49,R51,R53,R55,R56,R57 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step8.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 2.2K Ohm resistors (red, red, red, gold) R58,R59 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D1 (1N5229B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D2 (1N5239B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 8-pin IC sockets for IC4,IC5. Install with the notch to the top. &lt;br /&gt;
#:[[File:Ren24DC-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install three 14-pin IC sockets for IC1,IC2,IC3. Install with the notch to the right.&lt;br /&gt;
#:[[File:Ren24DC-Step13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - (OPTIONAL!! Not needed for the PIC16F1825) Install the clock oscillator OSC1.  The oscillator must be installed in the correct orientation.  The oscillator has three rounded corners and one squared corner, make sure that the squared corner is positioned to match the PCB &lt;br /&gt;
silkscreen (upper left corner).&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two green LED LED2,LED3. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one red LED LED1. The LED is polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 2-pin vertical headers JP1,JP2. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one dual row 3-pin vertical header JP3. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 3-pin vertical header JP4. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 5-pin vertical header JP5. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install eight terminal blocks sets for RGB outputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 47uF capacitors C6,C7. This capacitor is polarized and must be installed correctly. The capacitor should have a silver/grey stripe on the body to indicate which lead is negative. The positive lead of the capacitor will be the longer lead. Make sure that the positive lead is placed in the pad with the +.&lt;br /&gt;
#:[[File:Ren24DC-Step22.jpg|300px]] &lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two large terminal blocks for the inputs.  Install with the openings for the wires facing off the edge of the board.#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten RJ45 modular jacks J1,J2.  Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board. &lt;br /&gt;
#:[[File:Ren24DC-Step23.jpg|300px]]&lt;br /&gt;
Congratulations! That completes the construction of the Ren24DC!&lt;br /&gt;
#:[[File:Ren24DC-Step24.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step25.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step26.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step27.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step28.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step29.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step30-Final.jpg|300px]]&lt;br /&gt;
&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - DMX Termination====&lt;br /&gt;
Install shunt to terminate DMX input&lt;br /&gt;
====JP2 - RS232 Mode====&lt;br /&gt;
Install shunt for RS232 input&lt;br /&gt;
====JP3 - Data Mode====&lt;br /&gt;
Normal Operation Jumper Pins 1/2 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
Thru Operation Jumper Pins 2/3 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
====JP4 - Power Jumper====&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.&lt;br /&gt;
====JP5 - Wireless Header====&lt;br /&gt;
Install shunt on pins 4/5 for normal operation.&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 1 - +5V&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 2 - No Connection&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 3 - GND&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 4 - Data From RS485&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 5 - Data To PIC&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Powering the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Ren24DC, 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 Ren24DC 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 Ren24DC 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11511</id>
		<title>Ren24DC</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=Ren24DC&amp;diff=11511"/>
		<updated>2014-03-22T19:49:25Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ren24DC.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;
=Ren24DC Construction Manual=&lt;br /&gt;
&lt;br /&gt;
==&#039;&#039;What&#039;&#039; is the Ren24DC?==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Revision History==&lt;br /&gt;
&lt;br /&gt;
==Ren24DC Parts==&lt;br /&gt;
To build the Ren24DC, you need 4 things:&lt;br /&gt;
# The [http://www.diyledexpress.com/index.php?main_page=product_info&amp;amp;cPath=35_57&amp;amp;products_id=277 PCB]&lt;br /&gt;
# The parts to solder on the board, also known as a BOM (Bill Of Materials).&lt;br /&gt;
# A [[Ren24DC#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&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;#&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Resistor&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;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can buy the parts directly from Mouser: [http://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=f998b5a72f   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=35_57&amp;amp;products_id=278 DIYLEDExpress.com]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Building the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
The Ren24DC 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:Ren24DC.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:Ren24DC-Step1.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 five 0.1uF (100nF) capacitors C1-C5.  The capacitors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step2.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 27K Ohm resistors (-, -, -, gold) R1,R2 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step3.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 1K Ohm resistors (-, -, -, gold) R3,R4 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step4.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 220 Ohm resistors (-, -, -, gold) R5 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step5.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 120 Ohm resistor (-, -, -, gold) R6 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step6.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 twenty-four 470 Ohm resistors (-, -, -, gold) R7,R9,R12,R13,R15,R17,R19,R21,R23,R25,R27,R29,R30,R32,R34,R36,R38,R40,R42,R44,R46,R48,R50,R52,R54 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step7.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 twenty-seven 10K Ohm resistors (brown, black, orange, gold) R8,R10,R12,R14,R16,R18,R20,R22,R24,R26,R28,R30,R31,R33,R35,R37,R39,R41,R43,R45,R47,R49,R51,R53,R55,R56,R57 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step8.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 XXX Ohm resistors (-, -, -, gold) R58,R59 The resistors are not polarized and can be mounted either way.&lt;br /&gt;
#:[[File:Ren24DC-Step9.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D1 (1N5229B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step10.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install zener diode D2 (1N5239B). The diode must be installed correctly. The diode should have a black stripe on the orange/red body. Make sure that this stripe lines up with the stripe on the PCB silkscreen (to the left). &lt;br /&gt;
#:[[File:Ren24DC-Step11.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 8-pin IC sockets for IC4,IC5. Install with the notch to the top. &lt;br /&gt;
#:[[File:Ren24DC-Step12.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install three 14-pin IC sockets for IC1,IC2,IC3. Install with the notch to the right.&lt;br /&gt;
#:[[File:Ren24DC-Step13.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - (OPTIONAL!! Not needed for the PIC16F1825) Install the clock oscillator OSC1.  The oscillator must be installed in the correct orientation.  The oscillator has three rounded corners and one squared corner, make sure that the squared corner is positioned to match the PCB &lt;br /&gt;
silkscreen (upper left corner).&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two green LED LED2,LED3. The LEDs are polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step15.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one red LED LED1. The LED is polarized and must be installed correctly. The short lead is the cathode and must be placed in the square solder pad.&lt;br /&gt;
#:[[File:Ren24DC-Step16.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 2-pin vertical headers JP1,JP2. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step17.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one dual row 3-pin vertical header JP3. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step18.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 3-pin vertical header JP4. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step19.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install one 5-pin vertical header JP5. &#039;&#039;&#039;Install the short end through the board.&#039;&#039;&#039;  These headers have no polarity to worry about. &lt;br /&gt;
#:[[File:Ren24DC-Step20.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install eight terminal blocks sets for RGB outputs.  Install with the openings for the wires facing off the edge of the board.&lt;br /&gt;
#:[[File:Ren24DC-Step21.jpg|300px]]&lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two 47uF capacitors C6,C7. This capacitor is polarized and must be installed correctly. The capacitor should have a silver/grey stripe on the body to indicate which lead is negative. The positive lead of the capacitor will be the longer lead. Make sure that the positive lead is placed in the pad with the +.&lt;br /&gt;
#:[[File:Ren24DC-Step22.jpg|300px]] &lt;br /&gt;
#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install two large terminal blocks for the inputs.  Install with the openings for the wires facing off the edge of the board.#&amp;lt;span style=&amp;quot;font-size:21px&amp;quot;&amp;gt;□&amp;lt;/span&amp;gt; - Install ten RJ45 modular jacks J1,J2.  Due to minor variations in manufacturing, some RJ45 jacks are a tighter fit than others. Care should be taken to ensure that the pins are aligned first before applying too much pressure to seat the locking lugs through the board. &lt;br /&gt;
#:[[File:Ren24DC-Step23.jpg|300px]]&lt;br /&gt;
Congratulations! That completes the construction of the Ren24DC!&lt;br /&gt;
#:[[File:Ren24DC-Step24.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step25.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step26.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step27.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step28.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step29.jpg|300px]]&lt;br /&gt;
#:[[File:Ren24DC-Step30-Final.jpg|300px]]&lt;br /&gt;
==Jumpers==&lt;br /&gt;
&lt;br /&gt;
====JP1 - DMX Termination====&lt;br /&gt;
Install shunt to terminate DMX input&lt;br /&gt;
====JP2 - RS232 Mode====&lt;br /&gt;
Install shunt for RS232 input&lt;br /&gt;
====JP3 - Data Mode====&lt;br /&gt;
Normal Operation Jumper Pins 1/2 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
Thru Operation Jumper Pins 2/3 on both rows&amp;lt;br/&amp;gt;&lt;br /&gt;
====JP4 - Power Jumper====&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.&lt;br /&gt;
====JP5 - Wireless Header====&lt;br /&gt;
Install shunt on pins 4/5 for normal operation.&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 1 - +5V&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 2 - No Connection&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 3 - GND&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 4 - Data From RS485&amp;lt;br/&amp;gt;&lt;br /&gt;
Pin 5 - Data To PIC&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Powering the Ren24DC==&lt;br /&gt;
&lt;br /&gt;
==Initial Testing==&lt;br /&gt;
&lt;br /&gt;
==TroubleShooting==&lt;br /&gt;
So - you&#039;ve built your new Ren24DC, 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 Ren24DC 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 Ren24DC 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;
==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:DMX]]&lt;br /&gt;
[[Category:Renard]]&lt;br /&gt;
[[Category:DIYC Controllers]]&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step30-Final.jpg&amp;diff=11510</id>
		<title>File:Ren24DC-Step30-Final.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step30-Final.jpg&amp;diff=11510"/>
		<updated>2014-03-22T19:43:51Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step29.jpg&amp;diff=11509</id>
		<title>File:Ren24DC-Step29.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step29.jpg&amp;diff=11509"/>
		<updated>2014-03-22T19:43:39Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step28.jpg&amp;diff=11508</id>
		<title>File:Ren24DC-Step28.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step28.jpg&amp;diff=11508"/>
		<updated>2014-03-22T19:43:26Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step27.jpg&amp;diff=11507</id>
		<title>File:Ren24DC-Step27.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step27.jpg&amp;diff=11507"/>
		<updated>2014-03-22T19:43:13Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step26.jpg&amp;diff=11506</id>
		<title>File:Ren24DC-Step26.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step26.jpg&amp;diff=11506"/>
		<updated>2014-03-22T19:43:01Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step25.jpg&amp;diff=11505</id>
		<title>File:Ren24DC-Step25.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step25.jpg&amp;diff=11505"/>
		<updated>2014-03-22T19:42:49Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step24.jpg&amp;diff=11504</id>
		<title>File:Ren24DC-Step24.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step24.jpg&amp;diff=11504"/>
		<updated>2014-03-22T19:42:34Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step23.jpg&amp;diff=11503</id>
		<title>File:Ren24DC-Step23.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step23.jpg&amp;diff=11503"/>
		<updated>2014-03-22T19:42:19Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step22.jpg&amp;diff=11502</id>
		<title>File:Ren24DC-Step22.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step22.jpg&amp;diff=11502"/>
		<updated>2014-03-22T19:42:10Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step21.jpg&amp;diff=11501</id>
		<title>File:Ren24DC-Step21.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step21.jpg&amp;diff=11501"/>
		<updated>2014-03-22T19:42:00Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step20.jpg&amp;diff=11500</id>
		<title>File:Ren24DC-Step20.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step20.jpg&amp;diff=11500"/>
		<updated>2014-03-22T19:41:50Z</updated>

		<summary type="html">&lt;p&gt;Dlovely: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dlovely</name></author>
	</entry>
	<entry>
		<id>http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step19.jpg&amp;diff=11499</id>
		<title>File:Ren24DC-Step19.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.doityourselfchristmas.com/wiki/index.php?title=File:Ren24DC-Step19.jpg&amp;diff=11499"/>
		<updated>2014-03-22T19:41:40Z</updated>

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