<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>YourITronics &#187; Matrix</title>
	<atom:link href="http://www.youritronics.com/tag/matrix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.youritronics.com</link>
	<description>DIY, Electronics, IT, Gadgets</description>
	<lastBuildDate>Fri, 16 Dec 2011 19:22:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Matrix keyboard explained</title>
		<link>http://www.youritronics.com/matrix-keyboard-explained/</link>
		<comments>http://www.youritronics.com/matrix-keyboard-explained/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 23:23:54 +0000</pubDate>
		<dc:creator>Laci</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Personal Projects]]></category>
		<category><![CDATA[ATmega88]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[keypad]]></category>
		<category><![CDATA[Matrix]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/?p=2812</guid>
		<description><![CDATA[In many cases you want to add some input interface to the project, the most simple is to use some push-buttons but what if you need to set some values, some of you might say:  you can do it with up-down, left-right, select button and some clever menu. Yes that&#8217;s about right but just imagine [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.youritronics.com/wp-content/uploads/2009/08/KeyboardDemo.jpg"><img class="aligncenter size-medium wp-image-2813" src="http://www.youritronics.com/wp-content/uploads/2009/08/KeyboardDemo-300x157.jpg" alt="Matrix keyboard setup" width="300" height="157" /></a></p>
<p style="text-align: left;">In many cases you want to add some input interface to the project, the most simple is to use some push-buttons but what if you need to set some values, some of you might say:  you can do it with up-down, left-right, select button and some clever menu. Yes that&#8217;s about right but just imagine the software if you want to set values from 0-9999, or applications like access control, counters.</p>
<p style="text-align: left;">The most commonly known is the 12 (3&#215;4) type which has off course 12 buttons noted from 0-9 and *, # for extra features. Well so far there isn&#8217;t anything clever about it, 12 buttons which need 12 input pins, wrong it needs just 7, the push buttons are organized in rows and columns, each row shares the same horizontal connection, while each column shares the same vertical connection. For a better understanding look at the schematic:</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://www.youritronics.com/wp-content/uploads/2009/08/keyboard-schematic.jpg"><img class="size-thumbnail wp-image-2816 alignnone" src="http://www.youritronics.com/wp-content/uploads/2009/08/keyboard-schematic1-150x150.jpg" alt="matrix keyboard schematic" width="150" height="150" /></a></p>
<p style="text-align: left;">Because of this matrix connection the reading of active button(which is pushed) isn&#8217;t so straightforward, each column has to be processed sequentially.</p>
<p style="text-align: left;">The resistors are external components, there are not included into the keypad but certainly needed, R1-R4 are the pull-up resistor, in the demo application the atmega88&#8242;s internal pull-ups are used, R5-R7 are for current limiting.</p>
<p style="text-align: left;">A few words about the firmware, the keyboard is connected to PORTB, PB0-PB3 are configured as inputs with the internal pull-up active, these will read which row is active, PB4-PB6 are configured as outputs and serve for column selection, their default value is logic &#8217;1&#8242; the same as the row pins default value. The reading is made sequentially, the first column is selected by setting PB4(COL1) to logic &#8217;0&#8242; and the pins PB0-PB3 are red, if no key is pressed the pins remain in their default state: logic &#8217;1&#8242; else their value is logic&#8217;0&#8242; we must go trough these steps for each column, once a pressed key is found its space thus value is determined, the function restores the corresponding column select pins default state and exits, this way speeding up the process.</p>
<p style="text-align: left;">Lets take an example: key 4 is pressed, column 1 is selected by setting PB4 to logic &#8217;0&#8242;, when we read PB0-PB3 PB1 will be logic &#8217;0&#8242;, since we know which column is active (it would be really funny otherwise since we wrote the firmware) the exact location of the pressed key is determined. Now we have 2 coordinates x(0..2),y(0..3)  x=1 is the row, y=0 is the column the most simple way to turn these coordinates into a value is using a 2 dimension look-up table:</p>
<p style="text-align: left;">const unsigned char KeyMap[3][4] = {{1,4,7,ESC},{2,5,8,0},{3,6,9,ENTER}}; // values ESC and ENTER are defined by macros</p>
<p style="text-align: left;">By simply addressing the table with the coordinates we have the corresponding value of the pressed key  value = KeyMap[x][y]; the look-up table can also hold any data of choice like ASCII, or can have other type definition as long as its dimension matches the keypads dimension [x][y].</p>
<p style="text-align: left;">Since the keypad or any other human machine interface tends to be asynchronous, which means that at any moment the firmware should be able to sense and to handle the input, the entire process or in other words the scanning must be executed periodically. This can be done inside some timer interrupt routine or just by adding some delays to the main cycle, if possible avoid using the mains power frequency or any multiple of this for scanning.</p>
<p style="text-align: left;">Also between the column selection and the effective pin reading some delay must be inserted, this allows time for the electrical state of the wires, traces to stabilize. After one pressed key is sensed the function exits, thus multiple pressed key will not be recorded although the modification needed to the firmware is quite simple, so consider this a challenge.</p>
<p style="text-align: left;">I attached the entire AVR Studio project, it is written in C, using the winavr package, it will be easy to integrate into any project. In the near future I will explain how to save I/O pins by sharing the row pins with other functions like driving the 7 segment display.</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;"><strong>Matrix keyboard explained: </strong><a href="http://www.youritronics.com/wp-content/uploads/2009/08/Matrix_keyboard_demo.zip">[download]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/matrix-keyboard-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LED Pharmacy Cross</title>
		<link>http://www.youritronics.com/led-pharmacy-cross/</link>
		<comments>http://www.youritronics.com/led-pharmacy-cross/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 20:56:17 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ATmega64]]></category>
		<category><![CDATA[AVR]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[Serial]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/?p=1414</guid>
		<description><![CDATA[This article is part of the PCB Giveaway program that we have running here at Youritronics. Morgoth will get a free pcb manufactured by BKRtech for submitting this project. If you&#8217;re interested in participating, read more on the program page. These days most pharmacies use LED pharmacy crosses posted at their entrance to let people [...]]]></description>
			<content:encoded><![CDATA[<p>This article is part of the <a href="http://www.youritronics.com/pcb-giveaway/">PCB Giveaway</a> program that we have running here at Youritronics. Morgoth will get a <a href="http://www.youritronics.com/new-pcbs-from-bkrtech/">free pcb</a> manufactured by BKRtech for submitting this project. If you&#8217;re interested in participating, read more on the program page.</p>
<p>These days most pharmacies use LED pharmacy crosses posted at their entrance to let people know there is a pharmacy there. The reasons are obvious, they look cool&amp;hi-tech, they can be seen from distance and they can be customized really easy (well, easy customizing pretty much depends on how the manufacturer approaches things).</p>
<p>If you try to search the web about schematics or example codes for this kind of circuit you wont find any, and again i think the reason is obvious, the crosses are quite expensive and so is the profit for the manufacturer. So nobody is gonna post schematics for such a project, unless you&#8217;re a hobbyist and you&#8217;re having fun with electronics.</p>
<p>The project consists of one ATmega64, three ULN2003 and five 5&#215;7 LED matrix from Kingbright(TA20-11EWA). I had the idea to build something like this but so far i haven&#8217;t had the time nor the knowledge to get it done. So i asked Morgoth if he would like to participate in the project. I sent him the LED&#8217;s, the drivers and the PCB and he started working. As you can see not many parts are involved , but the secret lies in the microcontroller, it&#8217;s the programming that does the job.</p>
<p><a href="http://www.youritronics.com/wp-content/uploads/2008/10/pharmacy-cross-schematic.jpg"><img class="size-medium wp-image-1415" title="led-pharmacy-cross-schematic" src="http://www.youritronics.com/wp-content/uploads/2008/10/pharmacy-cross-schematic-300x207.jpg" alt="led-pharmacy-cross-schematic" width="300" height="207" /></a></p>
<p>In the next pictures you can see the microcontroller board with the ULN2003 darlington arrays:</p>
<p><a href="http://www.youritronics.com/wp-content/uploads/2008/10/led-pharmacy-cross-board.jpg"><img class="size-medium wp-image-1416 alignleft" title="led-pharmacy-cross-board" src="http://www.youritronics.com/wp-content/uploads/2008/10/led-pharmacy-cross-board-300x225.jpg" alt="LED Pharmacy Cross" width="300" height="225" /></a><a href="http://www.youritronics.com/wp-content/uploads/2008/10/led-pharmacy-cross-board2.jpg"><img class="size-medium wp-image-1417" title="led-pharmacy-cross-board2" src="http://www.youritronics.com/wp-content/uploads/2008/10/led-pharmacy-cross-board2-300x225.jpg" alt="LED Pharmacy Cross" width="300" height="225" /></a></p>
<p>The circuit was designed to receive messages trough serial interface from a computer and than display them. Morgoth also designed a custom terminal for windows which provides easy access to the display.</p>
<p>In this test phase a serial interface by wire was used to transmit data between the terminal and the ATmega64, but a wireless or bluetooth module could be integrated with no problem.</p>
<p>Also as a note, the LED&#8217;s don&#8217;t light up really bright, for that to happen you need to use drivers on the positive rail. This also applies if you&#8217;re planning to take the project to another level and use bigger LED&#8217;s</p>
<p>And now, watch some videos with the LED Pharmacy Cross beeing controlled from the computer:</p>
<a href="http://www.youritronics.com/led-pharmacy-cross/"><img src="http://img.youtube.com/vi/9ngpEpNWG98/default.jpg" width="130" height="97" border=0></a>
<a href="http://www.youritronics.com/led-pharmacy-cross/"><img src="http://img.youtube.com/vi/tnU0ZEgrdjw/default.jpg" width="130" height="97" border=0></a>
<ul>
<li><strong>LED Pharmacy Cross ATmega <a title="atmega source code" href="http://www.youritronics.com/wp-content/uploads/2008/10/led-pharmacy-cross-atmega-source-code.zip">source code</a></strong></li>
<li><strong>LED Pharmacy Cross terminal <a title="terminal source code" href="http://www.youritronics.com/wp-content/uploads/2008/10/led-pharmacy-cross-terminal-source-code.zip">source code</a></strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/led-pharmacy-cross/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fancy LED matrix</title>
		<link>http://www.youritronics.com/fancy-led-matrix/</link>
		<comments>http://www.youritronics.com/fancy-led-matrix/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 10:37:41 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[PIC]]></category>
		<category><![CDATA[PIC16F628]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/?p=1314</guid>
		<description><![CDATA[The author, Olivier de Broqueville designed this circuit for hi&#8217;s son who was dreaming of a small tool able to write symbols or pictures on a screen. The solution adopted was to pilot a matrix of Leds. This way, with only some cheap transistors, common red Leds,  and a 16F628 , the dream could become [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youritronics.com/wp-content/uploads/2008/07/fancy-led-matrix.jpg"><img class="alignnone size-medium wp-image-1315" title="fancy-led-matrix" src="http://www.youritronics.com/wp-content/uploads/2008/07/fancy-led-matrix-300x200.jpg" alt="Fancy LED matrix" width="300" height="200" /></a></p>
<p>The author, Olivier de Broqueville designed this circuit for hi&#8217;s son who was dreaming of a small tool able to write symbols or pictures on a screen. The solution adopted was to pilot a matrix of Leds. This way, with only some cheap transistors, common red Leds,  and a 16F628 , the dream could become reality.</p>
<p>Olivier also made a VB application that you can use to design patterns and export them apropriately.</p>
<p><strong>Fancy LED matrix: </strong><a href="http://users.picbasic.org/projects/FANCY%20LEDS/fancy_leds.htm">[Link]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/fancy-led-matrix/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Computer Controlled LED Matrix</title>
		<link>http://www.youritronics.com/computer-controlled-led-matrix/</link>
		<comments>http://www.youritronics.com/computer-controlled-led-matrix/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 21:01:47 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[4017]]></category>
		<category><![CDATA[Matrix]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/?p=1208</guid>
		<description><![CDATA[The project uses (2) 5&#215;7 LED Displays, so 10 columns and 7 rows for a total of 70 LEDs.  The matrix works on the basis of scanning the display very quickly. The 4017 chip is used to switch between the columns. The way the 4017 chip works, is that when a signal is sent to [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-1209" href="http://www.youritronics.com/computer-controlled-led-matrix/computer-controlled-led-matrix/"><img class="alignnone size-medium wp-image-1209" title="computer-controlled-led-matrix" src="http://www.youritronics.com/wp-content/uploads/2008/07/computer-controlled-led-matrix-300x225.jpg" alt="Computer Controlled LED Matrix" width="300" height="225" /></a></p>
<p>The project uses (2) 5&#215;7 LED Displays, so 10 columns and 7 rows for a total of 70 LEDs.  The matrix works on the basis of scanning the display very quickly. The 4017 chip is used to switch between the columns. The way the 4017 chip works, is that when a signal is sent to a certain pin, 1 of 10 of the other pins is sequentially activated. The way the software works, is it tells the chip to switch columns, which sets one column high.</p>
<p>The software then makes the parallel port turn on the individual LEDs in that column needed. This is done very quickly, many times a second. It&#8217;s a fairly easy concept and it turned out the programming was easier than the author had initially anticipated.</p>
<p>And the great thing about this project is that it also comes with a font writer, which is basically a software written also by the author of the circuit to help him quickly design animations.</p>
<p><strong>Computer Controlled LED Matrix:</strong> <a href="http://www.jbprojects.net/projects/led/">[Link]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/computer-controlled-led-matrix/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Physical LED Twitter Scrolls Your Twitters</title>
		<link>http://www.youritronics.com/physical-led-twitter-scrolls-your-twitters/</link>
		<comments>http://www.youritronics.com/physical-led-twitter-scrolls-your-twitters/#comments</comments>
		<pubDate>Fri, 23 May 2008 13:53:26 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/?p=1100</guid>
		<description><![CDATA[Another useful application for a LED dot matrix display, well useful for those who use twitter. The purpose of the project is simple, it scrolls your twitters on the led matrix, this way you don&#8217;t have to be in front of your computer to see what&#8217;s new. Source codes and info about building it is [...]]]></description>
			<content:encoded><![CDATA[<a href="http://www.youritronics.com/physical-led-twitter-scrolls-your-twitters/"><img src="http://img.youtube.com/vi/W_A4ADtAUXw/default.jpg" width="130" height="97" border=0></a>
<p>Another useful application for a LED dot matrix display, well useful for those who use <a title="LED matrix scolls your twitters" href="http://twitter.com/">twitter</a>. The purpose of the project is simple, it scrolls your twitters on the led matrix, this way you don&#8217;t have to be in front of your computer to see what&#8217;s new. Source codes and info about building it is provided by the author. The matrix is controlled by an Arduino</p>
<p><strong>Physical LED Twitter Scrolls Your Twitters:</strong> <a href="http://dotmatrixdesign.tumblr.com/page/1">[Link]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/physical-led-twitter-scrolls-your-twitters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Tiled display</title>
		<link>http://www.youritronics.com/dynamic-tiled-display/</link>
		<comments>http://www.youritronics.com/dynamic-tiled-display/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 15:25:12 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Matrix]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/dynamic-tiled-display/</guid>
		<description><![CDATA[This project&#8217;s display is made of a number of tiles, about 2&#8243; square with an 8 x 8 array of color LED pixels. Each tile is individually powered and animated, so your can freely pick them up and re-arrange them. To set up a display, the tiles are placed in a special tray. Animations are [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youritronics.com/dynamic-tiled-display/dynamic-tiled-display/" rel="attachment wp-att-960" title="Dynamic Tiled display"><img src="http://www.youritronics.com/wp-content/uploads/2008/04/dynamic-tiled-display.jpg" alt="Dynamic Tiled display" /></a></p>
<p>This project&#8217;s display is made of a number of <strong>tiles</strong>, about 2&#8243; square with an 8 x 8 array of color LED pixels. Each tile is individually powered and animated, so your can freely pick them up and re-arrange them. To set up a display, the tiles are placed in a special <strong>tray</strong>. Animations are downloaded into the tray via Ethernet and stored locally on an EEPROM, or loaded via an SD card. The tray broadcasts the animation to each of the tiles, and then synchronizes them.</p>
<p>If the pieces are left in the tray, the animation can be updated continuously over the Ethernet connection. If the tiles are removed from the tray, they&#8217;ll display the animation for several hours with their own re-chargeable battery power. Once the animation is synchronized and running on the tiles, you can pick them up and place them anywhere.</p>
<p><strong>Dynamic Tiled display:</strong> <a href="http://www.saccade.com/writing/projects/Puzzlemation/Puzzlemation.html">[Link]</a> &#8211; <a href="http://blog.makezine.com/archive/2008/04/puzzlemation_maker_faire.html">[Via]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/dynamic-tiled-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAX6953 LED Matrix or development board</title>
		<link>http://www.youritronics.com/max6953-led-matrix-or-development-board/</link>
		<comments>http://www.youritronics.com/max6953-led-matrix-or-development-board/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 09:34:15 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Capacitor]]></category>
		<category><![CDATA[Diode]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[MAX6953]]></category>
		<category><![CDATA[Resistor]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/max6953-led-matrix-or-development-board/</guid>
		<description><![CDATA[The MAX6953 from Dallas Maxim is a compact cathode-row display driver that interfaces a microprocessor (like PIC or AVR) to four 5&#215;7 dot matrix LED display trough an I2C compatible serial interface. The Max chip includes some nice features like: low-power shutdown mode segment blinking test mode that forces all LEDs on 16-Step digital brightness [...]]]></description>
			<content:encoded><![CDATA[<p><a title="MAX6953 LED Matrix or development board" rel="attachment wp-att-934" href="http://www.youritronics.com/max6953-led-matrix-or-development-board/max6953-led-matrix-or-development-board/"><img src="http://www.youritronics.com/wp-content/uploads/2008/04/max6953-led-matrix-or-development-board.jpg" alt="MAX6953 LED Matrix or development board" width="422" height="317" /></a></p>
<p>The MAX6953 from Dallas Maxim is a compact cathode-row display driver  		that interfaces a microprocessor (like PIC or AVR) to four 5&#215;7 dot  		matrix LED display trough an I2C compatible serial interface. The Max chip includes some nice features like:</p>
<ul>
<li>low-power shutdown  		mode</li>
<li>segment blinking</li>
<li>test mode that forces all LEDs on</li>
<li>16-Step digital brightness control</li>
</ul>
<p>This project can be considered both a led matrix controller and a development board for MAX6953. The project presents only the max6953 and the led matrix, if you want it to display anything, you&#8217;ll also need to stick a microcontroller in there and write some code. You might want to check this other article <a title="50x7 LED matrix" href="http://www.youritronics.com/scrolling-text-display-generated-on-50x7-led-matrix-with-avr-at-90s2313/">50&#215;7 LED Matrix</a> which has everything included.</p>
<p><strong>MAX6953 LED Matrix or development board:</strong> <a href="http://www.electronics-lab.com/projects/misc/009/index.html">[Link]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/max6953-led-matrix-or-development-board/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>16&#215;24 RGB LED Matrix</title>
		<link>http://www.youritronics.com/16x24-rgb-led-matrix/</link>
		<comments>http://www.youritronics.com/16x24-rgb-led-matrix/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 17:17:40 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[Matrix]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[TLC5940]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/16x24-rgb-led-matrix/</guid>
		<description><![CDATA[The most significant part used in this project is Texas Instruments&#8217; TLC5940 LED PWM driver. It uses a clocked serial data input, and provides 12 bits of PWM resolution on each of 16 outputs. Normally, the TLC5940 would require one output for each LED element. Since there are three elements per RGB LED, this would [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youritronics.com/16x24-rgb-led-matrix/16x24-rgb-led-matrix/" rel="attachment wp-att-711" title="16×24 RGB LED Matrix"><img src="http://www.youritronics.com/wp-content/uploads/2008/04/16x24-rgb-led-matrix.png" alt="16×24 RGB LED Matrix" height="230" width="350" /></a></p>
<p>The most significant part used in this project is Texas Instruments&#8217; TLC5940 LED PWM driver. It uses a clocked serial data input, and provides 12 bits of PWM resolution on each of 16 outputs.</p>
<p>Normally, the TLC5940 would require one output for each LED element. Since there are three elements per RGB LED, this would add up very quickly; the planned array would require 3 * 24 or 72 TLC5940 chips.</p>
<p><strong>16&#215;24 RGB LED Matrix:</strong> <a href="http://www.electronics-lab.com/blog/?p=1622">[Via]</a> &#8211; <a href="http://macetech.com/blog/?q=node/36">[Link]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/16x24-rgb-led-matrix/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>560 LED matrix display</title>
		<link>http://www.youritronics.com/560-led-matrix-display/</link>
		<comments>http://www.youritronics.com/560-led-matrix-display/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 12:24:43 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[74ABT574]]></category>
		<category><![CDATA[Matrix]]></category>

		<guid isPermaLink="false">http://www.youritronics.com/560-led-matrix-display/</guid>
		<description><![CDATA[Wow, this is the biggest LED matrix display i ever seen made in a DIY project. Seven 74ABT574s provide the row drive and 10 column transistors with the whole display refreshed 100 times a second. If you consider starting this project, you have to have some experience, its not suitable for beginners because of it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youritronics.com/560-led-matrix-display/560-led-matrix-display-top-view/" rel="attachment wp-att-701" title="560 LED matrix display - top view"><img src="http://www.youritronics.com/wp-content/uploads/2008/04/560-led-matrix-display-top-view.jpg" alt="560 LED matrix display - top view" height="216" width="288" /></a></p>
<p>Wow, this is the biggest LED matrix display i ever seen made in a DIY project. Seven <strong>74ABT574</strong>s provide the row drive and 10 column transistors with the whole display refreshed 100 times a second. If you consider starting this project, you have to have some experience, its not suitable for beginners because of it&#8217;s complexity and lack of information about building it</p>
<p><strong>560 LED matrix display:</strong> <a href="http://www.coolcircuit.com/gadgets/2008/04/01/560-led-matrix/">[Via] </a>- <a href="http://forums.linear1.org/index.php?PHPSESSID=57c95e6554aaa24886837f513f5e5000&amp;topic=1253.0">[Link]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/560-led-matrix-display/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DIY 8&#215;8 LED matrix</title>
		<link>http://www.youritronics.com/diy-8x8-led-matrix/</link>
		<comments>http://www.youritronics.com/diy-8x8-led-matrix/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 08:58:26 +0000</pubDate>
		<dc:creator>Florin</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[LED]]></category>
		<category><![CDATA[Matrix]]></category>

		<guid isPermaLink="false">http://www.YourITronics.com/2008/02/27/diy-8x8-led-matrix/</guid>
		<description><![CDATA[Member Spikenzie etched his own 8&#215;8 LED matrix PCB. He&#8217;s also posted helpful instructions and artwork used in his process - The 8&#215;8 LED matrix is a building block. There is no processor or circuitry other then then LEDs and the copper traces. It is simply an eight by eight 64-LED matrix on a PCB. [...]]]></description>
			<content:encoded><![CDATA[<p>Member Spikenzie etched his own 8&#215;8 LED matrix PCB.  He&#8217;s also posted helpful instructions and artwork used in his process -</p>
<blockquote><p>The 8&#215;8 LED matrix is a building block. There is no processor or circuitry other then then LEDs and the copper traces. It is simply an eight by eight 64-LED matrix on a PCB. The 8&#215;8 has 16 pins on one edge, 8 connect to the rows and the other 8 to the columns. This allows the maker to use their preference of controlling circuitry.</p></blockquote>
<p>The way a matrix works can be a bit mysterious at first.  Of course building one yourself is the best way to learn</p>
<p><a href="http://www.YourITronics.com/2008/02/27/diy-8x8-led-matrix/diy-8x8-led-matrix/" rel="attachment wp-att-273" title="DIY 8×8 LED matrix"></p>
<p style="text-align: center"><img src="http://www.YourITronics.com/wp-content/uploads/2008/02/diy-8x8-led-matrix.jpg" alt="DIY 8×8 LED matrix" /></p>
<p></a></p>
<p><a href="http://blog.makezine.com/archive/2008/02/led_matrices.html" title="Via">[VIA]</a> &#8211; <a href="http://www.spikenzielabs.com/SpikenzieLabs/8x8.html" title="link">[LINK]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youritronics.com/diy-8x8-led-matrix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

