<?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>Arduino Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/category/iot/arduino/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/category/iot/arduino/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 10 Jan 2019 12:46:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>Got my first IoT device</title>
		<link>https://blogit.create.pt/ricardocosta/2016/04/30/got-my-first-iot-device/</link>
					<comments>https://blogit.create.pt/ricardocosta/2016/04/30/got-my-first-iot-device/#respond</comments>
		
		<dc:creator><![CDATA[Ricardo Costa]]></dc:creator>
		<pubDate>Sat, 30 Apr 2016 14:09:21 +0000</pubDate>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[IoT]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/ricardocosta/?p=1111</guid>

					<description><![CDATA[<p>Hi, yesterday I got my first Arduino. Here it is my first sketch&#8230; the blink sketch 🙂 And the Arduino IDE blink sketch</p>
<p>The post <a href="https://blogit.create.pt/ricardocosta/2016/04/30/got-my-first-iot-device/">Got my first IoT device</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>yesterday I got my first Arduino. Here it is my first sketch&#8230; the blink sketch 🙂</p>
<p><a href="http://blogit-create.com/wp-content/uploads/2016/04/IMG_20160430_115827.jpg"><img fetchpriority="high" decoding="async" class="alignnone size-medium wp-image-1121" src="http://blogit-create.com/wp-content/uploads/2016/04/IMG_20160430_115827-225x300.jpg" alt="IMG_20160430_115827" width="225" height="300" /></a></p>
<p>And the Arduino IDE blink sketch</p>
<pre class="brush: cpp; title: ; notranslate">

// the setup function runs once when you press reset or power the board
void setup() {
 // initialize digital pin 13 as an output.
 pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
 digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
 delay(150); // wait
 digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
 delay(150); // wait
}

</pre>
<p>The post <a href="https://blogit.create.pt/ricardocosta/2016/04/30/got-my-first-iot-device/">Got my first IoT device</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/ricardocosta/2016/04/30/got-my-first-iot-device/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
