<?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>Adafruit GFX &#8211; Squix &#8211; TechBlog</title>
	<atom:link href="https://blog.squix.org/tag/adafruit-gfx/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.squix.org</link>
	<description></description>
	<lastBuildDate>Sun, 18 Dec 2016 09:25:10 +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>Font Creator Now Creates Adafruit GFX Fonts</title>
		<link>https://blog.squix.org/2016/10/font-creator-now-creates-adafruit-gfx-fonts.html</link>
					<comments>https://blog.squix.org/2016/10/font-creator-now-creates-adafruit-gfx-fonts.html#comments</comments>
		
		<dc:creator><![CDATA[Daniel Eichhorn]]></dc:creator>
		<pubDate>Sat, 01 Oct 2016 20:08:10 +0000</pubDate>
				<category><![CDATA[ESP8266 Weather Station]]></category>
		<category><![CDATA[Adafruit GFX]]></category>
		<category><![CDATA[ESP8266]]></category>
		<category><![CDATA[Font Creator]]></category>
		<guid isPermaLink="false">http://blog.squix.org/?p=822</guid>

					<description><![CDATA[As first task for the upcoming Weather Station Color project I wanted to adapt my online font generator. Easily creating fonts in various sizes will make work on the Weather Station code a lot easier. Since my own display library doesn&#8217;t support the color TFT ... <p><a class="read-more btn btn-secondary" href="https://blog.squix.org/2016/10/font-creator-now-creates-adafruit-gfx-fonts.html">Read More</a></p>]]></description>
										<content:encoded><![CDATA[<p>As first task for the upcoming Weather Station Color project I wanted to adapt my online font generator. Easily creating fonts in various sizes will make work on the Weather Station code a lot easier. Since my own display library doesn&#8217;t support the color TFT screen I switched to Adafruit&#8217;s library. They provide a converter but it needs to be compiled and I wanted to have this feature available on my web based font converter. So I analyzed the Adafruit font files and the converter and ported it to Java.</p>
<p><span id="more-822"></span></p>
<figure id="attachment_823" aria-describedby="caption-attachment-823" style="width: 265px" class="wp-caption aligncenter"><a href="https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?ssl=1"><img data-recalc-dims="1" fetchpriority="high" decoding="async" data-attachment-id="823" data-permalink="https://blog.squix.org/2016/10/font-creator-now-creates-adafruit-gfx-fonts.html/fontpreview" data-orig-file="https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?fit=265%2C265&amp;ssl=1" data-orig-size="265,265" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="fontpreview" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?fit=265%2C265&amp;ssl=1" data-large-file="https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?fit=265%2C265&amp;ssl=1" class="wp-image-823 size-full" src="https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?resize=265%2C265&#038;ssl=1" alt="fontpreview" width="265" height="265" srcset="https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?w=265&amp;ssl=1 265w, https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/blog.squix.org/wp-content/uploads/2016/10/FontPreview.png?resize=120%2C120&amp;ssl=1 120w" sizes="(max-width: 265px) 100vw, 265px" /></a><figcaption id="caption-attachment-823" class="wp-caption-text">The Font Creator Preview</figcaption></figure>
<p>To create fonts which you can use in the Adafruit library follow these steps:</p>
<ol>
<li>Go to: <a href="http://oleddisplay.squix.ch/" target="_blank">http://oleddisplay.squix.ch/</a></li>
<li>Choose font family, style and size</li>
<li>Now Choose &#8220;<strong>Adafruit GFX Font</strong>&#8221; from Library Version dropdown</li>
<li>Click &#8220;Create&#8221;</li>
<li>Copy the created font into a new file in your Arduino IDE, e.g. arial14.h and add a
<pre>#include "arial14.h"</pre>
<p>in your ino-file</li>
<li>Use the font by calling
<pre>tft.setFont(&amp;ArialMT_14);</pre>
</li>
</ol>
<p>If you are missing fonts in the font creator please contact me. New fonts should have a license which allows me to add them to the font creator&#8230;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.squix.org/2016/10/font-creator-now-creates-adafruit-gfx-fonts.html/feed</wfw:commentRss>
			<slash:comments>42</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">822</post-id>	</item>
	</channel>
</rss>
