<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>8&#215;8 Matrix &#8211; Squix &#8211; TechBlog</title>
	<atom:link href="https://blog.squix.org/tag/8x8-matrix/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.squix.org</link>
	<description></description>
	<lastBuildDate>Thu, 09 Dec 2021 08:13:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.8</generator>
<site xmlns="com-wordpress:feed-additions:1">121913304</site>	<item>
		<title>ESP8266: Flight-O-Matic</title>
		<link>https://blog.squix.org/2015/05/esp8266-flight-o-matic.html</link>
					<comments>https://blog.squix.org/2015/05/esp8266-flight-o-matic.html#comments</comments>
		
		<dc:creator><![CDATA[Daniel Eichhorn]]></dc:creator>
		<pubDate>Sun, 10 May 2015 10:53:00 +0000</pubDate>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[8x8 Matrix]]></category>
		<category><![CDATA[ESP8266]]></category>
		<category><![CDATA[plane spotting]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[RTL-SDR]]></category>
		<guid isPermaLink="false">http://blog.squix.org/2015/05/10/esp8266-flight-o-matic/</guid>

					<description><![CDATA[Preview for my augmented reality project: A RaspberryPi with SDR-RTL dongle picks up signals from airplanes in my relative neighbourhood. When an airplane becomes visible from by living room window it sends detailed flight information to 6 modules of 8&#215;8 Led Matrix elements such as ... <p><a class="read-more btn btn-secondary" href="https://blog.squix.org/2015/05/esp8266-flight-o-matic.html">Read More</a></p>]]></description>
										<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">
Preview for my augmented reality project: A RaspberryPi with SDR-RTL dongle picks up signals from airplanes in my relative neighbourhood. When an airplane becomes visible from by living room window it sends detailed flight information to 6 modules of 8&#215;8 Led Matrix elements such as connection details, airplane type, airline, etc. I hope to deliver a detailed documentation soon, the video is just a teaser;-)<br />
<iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/Wp2shHclKWA" width="420"></iframe>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.squix.org/2015/05/esp8266-flight-o-matic.html/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">55</post-id>	</item>
		<item>
		<title>ESP8266/Arduino: MAX7219 8&#215;8 Led Matrix Library</title>
		<link>https://blog.squix.org/2015/04/esp8266arduino-max7219-8x8-led-matrix.html</link>
					<comments>https://blog.squix.org/2015/04/esp8266arduino-max7219-8x8-led-matrix.html#comments</comments>
		
		<dc:creator><![CDATA[Daniel Eichhorn]]></dc:creator>
		<pubDate>Thu, 16 Apr 2015 17:05:00 +0000</pubDate>
				<category><![CDATA[ESP8266 Peripherals]]></category>
		<category><![CDATA[8x8 Matrix]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[ESP8266]]></category>
		<category><![CDATA[ESP8266/Arduino]]></category>
		<category><![CDATA[MAX7219]]></category>
		<category><![CDATA[SPI]]></category>
		<guid isPermaLink="false">http://blog.squix.org/2015/04/16/esp8266arduino-max7219-8x8-led-matrix/</guid>

					<description><![CDATA[Twice a year the company I work for (Netcetera) organizes a retreat for programmers, usually in the mountains. In the Spring issue this year we went to a resort in a beautiful mountain region. Inspired by the wonderful landscape I managed to write a library ... <p><a class="read-more btn btn-secondary" href="https://blog.squix.org/2015/04/esp8266arduino-max7219-8x8-led-matrix.html">Read More</a></p>]]></description>
										<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;">
<div dir="ltr" style="text-align: left;">Twice a year the company I work for (<a href="http://netcetera.com/" target="_blank" rel="noopener">Netcetera</a>) organizes a retreat for programmers, usually in the mountains. In the Spring issue this year we went to a resort in a beautiful mountain region. Inspired by the wonderful landscape I managed to write a library for the recently published Arduino IDE for ESP8266 which allows you to manipulate pixels and write animated text on 8&#215;8 led matrices with a MAX7219 driver.<a href="http://www.banggood.com/2Pcs-MAX7219-Dot-Matrix-MCU-LED-Display-Control-Module-Kit-For-Arduino-p-945280.html?p=0P21061109440201501M" target="_blank" rel="noopener">These boards</a> (affiliate link) only cost a bit more than $2/piece and you can connect several of them by daisy chaining one with the next. This allows you to create wonderful led bar on the cheap: lets say you buy 10 of them plus an ESP8266 and mount them on a piece of card board you&#8217;ll have a wonderful remote programmable eye catcher for shop display for less than $30!</p>
<p>Not being fluent anymore in C/C++ I had to get used again to the hard work of managing memory, dealing with a weird String object (yes, even weirder than the String object in Java;-)) and some other pitfalls for a 10+ years Java programmer.</p>
<p>But I finally managed it and here you can see the result:</p>
</div>
<p><iframe src="https://www.youtube.com/embed/SyQ0gtkVfAc" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<p>Connect the Modules like this:</p>
<table>
<thead>
<tr>
<th>Led Matrix</th>
<th>ESP8266</th>
</tr>
</thead>
<tbody>
<tr>
<td>VCC</td>
<td>+3.3V</td>
</tr>
<tr>
<td>GND</td>
<td>GND</td>
</tr>
<tr>
<td>DIN</td>
<td>GPIO13 (HSPID)</td>
</tr>
<tr>
<td>CS</td>
<td>Choose free GPIO, e.g. GPIO2</td>
</tr>
<tr>
<td>CLK</td>
<td>GPIO14 (HSPICLK)</td>
</tr>
</tbody>
</table>
<p>Here you&#8217;ll find the library:<br />
<a href="https://github.com/squix78/MAX7219LedMatrix">https://github.com/squix78/MAX7219LedMatrix</a></p>
<p>Please note:</p>
<ul style="text-align: left;">
<li>this library is made for the ESP8266 and might or might not work for &#8220;normal&#8221; Arduino boards.</li>
<li>I had to patch the Mac OS X release with the SPI folder from Github. In other words there wasn&#8217;t an up-to-date release for Mac OS X (and maybe for the other platforms as well) and the SPI.h/SPI.cpp wouldn&#8217;t compile</li>
</ul>
<p>&nbsp;</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.squix.org/2015/04/esp8266arduino-max7219-8x8-led-matrix.html/feed</wfw:commentRss>
			<slash:comments>14</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">58</post-id>	</item>
	</channel>
</rss>
