<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Intel Edison Arduino Kit Unboxing.</title><link>/members-area/personalblogs/b/blog/posts/intel-edison-arduino-kit-unboxing</link><description>Introduction: Occasionally in life you see glimpses of things to come. I remember fifteen or more years ago sharing music across the Internet was rampant. (It still is of course.) It occurred to me at the time that sharing movies and video conte...</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Intel Edison Arduino Kit Unboxing.</title><link>https://community.element14.com/members-area/personalblogs/b/blog/posts/intel-edison-arduino-kit-unboxing</link><pubDate>Sun, 24 Jul 2016 14:34:26 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:9e0a7a4d-0965-4292-8fc7-29b5e97e5e3c</guid><dc:creator>lcard</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;The only new thing I downloaded is the sqlite tools package precompiled for Linux:&amp;nbsp; &lt;a class="jive-link-external-small" href="https://www.sqlite.org/2016/sqlite-tools-linux-x86-3130000.zip" rel="nofollow ugc noopener" target="_blank" title="https://www.sqlite.org/2016/sqlite-tools-linux-x86-3130000.zip"&gt;https://www.sqlite.org/2016/sqlite-tools-linux-x86-3130000.zip&lt;/a&gt; but you don&amp;#39;t need them and I don&amp;#39;t think they are your problem. I&amp;#39;m doing all my work from an ssh command line because I work on my projects on and off logging in from several different hosts at home or from work on a coffee break.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This link describes using the setup tool to enable ssh on your Edison (but you probably went through that setting up your board for Eclipse):&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="https://software.intel.com/en-us/get-started-edison-windows-step2" rel="nofollow ugc noopener" target="_blank" title="https://software.intel.com/en-us/get-started-edison-windows-step2"&gt;https://software.intel.com/en-us/get-started-edison-windows-step2&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Once you have ssh enabled, if you&amp;#39;re working from a Windows development host, you&amp;#39;ll need to install an ssh client to connect to your Edison. I think Putty is the most popular one:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow ugc noopener" target="_blank" title="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html"&gt;PuTTY Download Page&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Filezilla (&lt;a class="jive-link-external-small" href="https://filezilla-project.org/" rel="nofollow ugc noopener" target="_blank" title="https://filezilla-project.org/"&gt;https://filezilla-project.org/)&lt;/a&gt; is great for transferring files to and from your Edison.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Unless you create a new user account, you&amp;#39;ll connect as user &amp;#39;root&amp;#39;. Once you have logged into your Edison, gcc is your compiler. Assuming your source file is &amp;quot;main.c&amp;quot; you would type:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span class="s1"&gt;root@edison:~#&amp;nbsp; &lt;/span&gt;&lt;span class="s1"&gt;gcc main.c -lsqlite3&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span class="s1"&gt;This will create an executable file called &amp;quot;a.out&amp;quot;, which you can run by typing:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span class="s1"&gt;root@edison:~#&amp;nbsp; &lt;/span&gt;&lt;span class="s1"&gt;./a.out&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span class="s1"&gt;Note: If your project grows beyond this test code you&amp;#39;ll want to start using make (or cmake) as a build tool, or else sort out Eclipse properly.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span class="s1"&gt;-L&lt;/span&gt;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=21680&amp;AppID=293&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Intel Edison Arduino Kit Unboxing.</title><link>https://community.element14.com/members-area/personalblogs/b/blog/posts/intel-edison-arduino-kit-unboxing</link><pubDate>Sun, 24 Jul 2016 08:20:44 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:9e0a7a4d-0965-4292-8fc7-29b5e97e5e3c</guid><dc:creator>tgunthorpe</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Hey Loren - great job with the road test.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I noticed that you used sqlite3 in your project.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;May I ask for a little help please?&lt;/p&gt;&lt;p&gt;I&amp;#39;d like to use sqlite3 in an Intel Edison project of my own - but haven&amp;#39;t been able to find out or figure out how to get sqlite3 to link. I&amp;#39;m using Eclipse C/C++ and mraa etc.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;sqlite3_open is showing undefined.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#include &amp;lt;sqlite3.h&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;int main() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int rc;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = sqlite3_open(&amp;quot;/media/Database/RIOT.db3&amp;quot;, &amp;amp;db);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;// bla bla&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thanks in advance&lt;/p&gt;&lt;p&gt;Tom&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=21680&amp;AppID=293&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Intel Edison Arduino Kit Unboxing.</title><link>https://community.element14.com/members-area/personalblogs/b/blog/posts/intel-edison-arduino-kit-unboxing</link><pubDate>Tue, 21 Jun 2016 19:23:15 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:9e0a7a4d-0965-4292-8fc7-29b5e97e5e3c</guid><dc:creator>DAB</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Once I received mine I finally began to appreciate what Intel has done here.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;While called an Arduino compatible board, it is soo much more.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So I am taking my time to read up on the architecture and looking at all of the options.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This board can easily become a convenient hub for IOT devices and still support most of the Arduino compatible add on boards and if I read the documentation right, you can even reuse Arduino code.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;That makes this board a very attractive asset.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;DAB&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=21680&amp;AppID=293&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Intel Edison Arduino Kit Unboxing.</title><link>https://community.element14.com/members-area/personalblogs/b/blog/posts/intel-edison-arduino-kit-unboxing</link><pubDate>Tue, 21 Jun 2016 14:35:48 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:9e0a7a4d-0965-4292-8fc7-29b5e97e5e3c</guid><dc:creator>clem57</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Other than some rambling, the write up is very good. Nice to see you liked it so much you went to the trouble to get 3 more.&lt;span&gt;[View:/resized-image/__size/16x16/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-9e0a7a4d-0965-4292-8fc7-29b5e97e5e3c/contentimage_5F00_938.png:16:16]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Clem&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=21680&amp;AppID=293&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item></channel></rss>