<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Quote:RobotGrrl wrote: in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953555#M20156</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;RobotGrrl wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;change:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_vendor": os.cpus()[0].model,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_model": os.platform(),&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Model Name": os.arch(),&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Firmware Version": os.release()&lt;/P&gt;

&lt;P&gt;to:&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_vendor": "ARM",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_model": "Angstrom",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Model Name": "Beaglebone Black",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Firmware Version": "Rev A5C"&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Thanks for using the iotkit-agent!&lt;/P&gt;

&lt;P&gt;The fact you have to do this is not normal. What version of node are you running? On Galileo we're using node 0.10.22, versions after that should work ok too. What's the output of forever.log? Also please use the code tags, makes it much easier to read :)&lt;/P&gt;</description>
    <pubDate>Wed, 19 Mar 2014 20:03:39 GMT</pubDate>
    <dc:creator>Brendan_L_Intel</dc:creator>
    <dc:date>2014-03-19T20:03:39Z</dc:date>
    <item>
      <title>Connecting Beaglebone Black</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953554#M20155</link>
      <description>&lt;P&gt;I am having some issues trying to connect my Beaglebone Black to the enableiot.com site. Specifically, it is hanging for the status response from the server when you are registering the device. (STATUS: /server/registration_status)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;My current setup is the BBB rev A5C powered by usb cable, and also connected to a computer. Running the os it came with (Angstrom). Ethernet connected to a router, and yes it is able to ping google.com.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Here is what I did to get to the point where agent.js can be started:&lt;/P&gt;

&lt;P&gt;---&lt;/P&gt;

&lt;P&gt;&amp;gt; cd iotkit&lt;BR /&gt;
	&amp;gt; ./setup-agent.sh&lt;/P&gt;

&lt;P&gt;problem:&lt;BR /&gt;
	./setup-agent.sh: line 33: sudo: command not found&lt;/P&gt;

&lt;P&gt;replace:&lt;BR /&gt;
	# if not root, try to use sudo&lt;BR /&gt;
	if [[ `whoami` != "root" ]];&lt;BR /&gt;
	then&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;SUDO=""&lt;BR /&gt;
	else&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;SUDO="sudo"&lt;BR /&gt;
	fi&lt;/P&gt;

&lt;P&gt;with:&lt;BR /&gt;
	SUDO=""&lt;/P&gt;

&lt;P&gt;should see:&lt;BR /&gt;
	npm downloading lots of things&lt;BR /&gt;
	finally- done&lt;/P&gt;

&lt;P&gt;&amp;gt; node agent&lt;BR /&gt;
	2014-03-19T17:05:37.252Z - info: IoT Kit Cloud Agent: &amp;nbsp;C8-A0-30-AC-DE-FE&lt;BR /&gt;
	2014-03-19T17:05:37.787Z - info: Cloud client created&lt;BR /&gt;
	Segmentation fault&lt;/P&gt;

&lt;P&gt;will find the segfault cause a little later&lt;BR /&gt;
	copy the cloud agent number&lt;BR /&gt;
	add it to devices on enableiot.com&lt;/P&gt;

&lt;P&gt;&amp;gt; shutdown -h now&lt;/P&gt;

&lt;P&gt;power on the BBB &amp;amp; wait for it to come up&lt;/P&gt;

&lt;P&gt;&amp;gt; cd iotkit&lt;BR /&gt;
	&amp;gt; node agent&lt;/P&gt;

&lt;P&gt;problem:&lt;BR /&gt;
	seg fault!&lt;/P&gt;

&lt;P&gt;problem line in agent.js:&lt;BR /&gt;
	cloud.reg(sensorsList);&lt;/P&gt;

&lt;P&gt;problem line in lib/cloud.js:&lt;BR /&gt;
	var doc = msg.getRegMsg(me.deviceId, undefined, undefined, me.sensorsList);&lt;/P&gt;

&lt;P&gt;right before var msg in lib/cloud-message.js add:&lt;BR /&gt;
	me.logger.info("hey");&lt;/P&gt;

&lt;P&gt;run node agent again&lt;/P&gt;

&lt;P&gt;problem:&lt;BR /&gt;
	error: UncaughtException: Cannot call method 'info' of undefined&lt;/P&gt;

&lt;P&gt;add right under var os:&lt;BR /&gt;
	logger = require('./logger').init();&lt;/P&gt;

&lt;P&gt;remove the me. infront of logger&lt;/P&gt;

&lt;P&gt;one of the variables in msg probably doesn’t exist on the BBB, we have to find it.&lt;/P&gt;

&lt;P&gt;change:&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_vendor": os.cpus()[0].model,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_model": os.platform(),&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Model Name": os.arch(),&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Firmware Version": os.release()&lt;/P&gt;

&lt;P&gt;to:&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_vendor": "ARM",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_model": "Angstrom",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Model Name": "Beaglebone Black",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Firmware Version": "Rev A5C"&lt;/P&gt;

&lt;P&gt;&amp;gt; node agent&lt;/P&gt;

&lt;P&gt;long wait for status /server/registration_status&lt;/P&gt;

&lt;P&gt;---&lt;/P&gt;

&lt;P&gt;And so this is where it is stuck. It's so close to working though, hopefully.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Any ideas as to why the status is not being received?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2014 18:18:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953554#M20155</guid>
      <dc:creator>RobotGrrl</dc:creator>
      <dc:date>2014-03-19T18:18:04Z</dc:date>
    </item>
    <item>
      <title>Quote:RobotGrrl wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953555#M20156</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;RobotGrrl wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;change:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_vendor": os.cpus()[0].model,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_model": os.platform(),&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Model Name": os.arch(),&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Firmware Version": os.release()&lt;/P&gt;

&lt;P&gt;to:&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_vendor": "ARM",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "hardware_model": "Angstrom",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Model Name": "Beaglebone Black",&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; "Firmware Version": "Rev A5C"&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Thanks for using the iotkit-agent!&lt;/P&gt;

&lt;P&gt;The fact you have to do this is not normal. What version of node are you running? On Galileo we're using node 0.10.22, versions after that should work ok too. What's the output of forever.log? Also please use the code tags, makes it much easier to read :)&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2014 20:03:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953555#M20156</guid>
      <dc:creator>Brendan_L_Intel</dc:creator>
      <dc:date>2014-03-19T20:03:39Z</dc:date>
    </item>
    <item>
      <title>Node version was 0.8.22.</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953556#M20157</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Node version was&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;0.8.22. Updated to&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;0.10.26.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Yes! Now the os variables work!&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Running agent again, the device registration was successful. Sending data upstream successfully now :)&lt;/P&gt;

&lt;P&gt;Thanks for the help Brendan.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2014 22:04:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953556#M20157</guid>
      <dc:creator>RobotGrrl</dc:creator>
      <dc:date>2014-03-19T22:04:15Z</dc:date>
    </item>
    <item>
      <title>I am trying to get my Galileo</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953557#M20158</link>
      <description>&lt;P&gt;I am trying to get my Galileo to register with the cloud. I upgraded my node on Galileo to 0.10.22 and I am able to fire up agent.js etc. I followed the steps to get the mac addr and registered a device in my enableiot account - All good.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;When I reboot galileo, everything fires up fine, but what is happening is that the Status returned for my device is "FALSE". &amp;nbsp;to be clear, here is the snippet of code from cloud.js:&lt;/P&gt;

&lt;DIV class="line" id="LC64" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;me&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;client&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="line" id="LC65" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;subscribe&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;me&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;topics&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;status&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="line" id="LC66" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;on&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s1" style="box-sizing: border-box; color: rgb(221, 17, 68);"&gt;'message'&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="kd" style="box-sizing: border-box; font-weight: bold;"&gt;function&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;topic&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;message&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;)&lt;/SPAN&gt; &lt;SPAN class="p" style="box-sizing: border-box;"&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="line" id="LC67" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;me&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;logger&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;info&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s1" style="box-sizing: border-box; color: rgb(221, 17, 68);"&gt;'STATUS: %s'&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;topic&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;message&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="line" id="LC68" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="kd" style="box-sizing: border-box; font-weight: bold;"&gt;var&lt;/SPAN&gt; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;regStatus&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;JSON&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;parse&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;message&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="line" id="LC69" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="c1" style="box-sizing: border-box; color: rgb(153, 153, 136); font-style: italic;"&gt;// Check registration status is true and device_id is ours&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV class="line" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;
	&lt;PRE style="box-sizing: border-box; font-family: Consolas, 'Liberation Mono', Courier, monospace; font-size: 12px; margin-top: 0px; margin-bottom: 0px; color: rgb(51, 51, 51); line-height: 18px;"&gt;
&amp;nbsp;&lt;/PRE&gt;

	&lt;DIV class="line" id="LC70" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&lt;SPAN class="k" style="box-sizing: border-box; font-weight: bold;"&gt;if&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;regStatus&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;!==&lt;/SPAN&gt; &lt;SPAN class="kc" style="box-sizing: border-box; font-weight: bold;"&gt;undefined&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;

	&lt;DIV class="line" id="LC71" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;regStatus&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;response&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;!==&lt;/SPAN&gt; &lt;SPAN class="kc" style="box-sizing: border-box; font-weight: bold;"&gt;undefined&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;

	&lt;DIV class="line" id="LC72" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;regStatus&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;response&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;status&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;

	&lt;DIV class="line" id="LC73" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;regStatus&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;response&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;device_id&lt;/SPAN&gt; &lt;SPAN class="o" style="box-sizing: border-box; font-weight: bold;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="nx" style="box-sizing: border-box;"&gt;me&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="nx" style="box-sizing: border-box;"&gt;deviceId&lt;/SPAN&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;){&lt;/SPAN&gt;&lt;/DIV&gt;

	&lt;DIV class="line" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;...&lt;/SPAN&gt;&lt;/DIV&gt;

	&lt;DIV class="line" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;...&lt;/SPAN&gt;&lt;/DIV&gt;

	&lt;DIV class="line" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&lt;/DIV&gt;

	&lt;DIV class="line" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&amp;nbsp;&lt;/DIV&gt;

	&lt;DIV class="line" style="box-sizing: border-box; padding-left: 10px; height: 18px;"&gt;&lt;SPAN class="p" style="box-sizing: border-box;"&gt;I am getting the response.status as FALSE. The accountid being returned for my galileo board's mac addr is correct, so it looks like it is looking it up correctly in the cloud, but the status returned is false. What could be the problem ?. Any ideas on how I could proceed ?. Thank&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 22 Apr 2014 02:59:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953557#M20158</guid>
      <dc:creator>Pravici</dc:creator>
      <dc:date>2014-04-22T02:59:24Z</dc:date>
    </item>
    <item>
      <title>Here is some more information</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953558#M20159</link>
      <description>&lt;P&gt;Here is some more information on my registration message: I dumped out what was being sent and here it is:&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;{"protocol_version":"1.0","timestamp":1398128594081,"sender_id":"98-4F-EE-00-0F-A2","msg_type":"device_registration_msg","properties":{"hardware_vendor":"Intel(R) Quark SoC X1000 CPU @ 339MHz","hardware_model":"linux","Model Name":"ia32","Firmware Version":"3.8.7-yocto-standard"},"peripherals":[{"uuid":"self","type":"gateway","properties":{},"services":[{"name":"98-4F-EE-00-0F-A2-sensor","version":"1.0"}]}],"service_metadata":[{"loaded":true,"capabilities":[],"enabled":true,"name":"98-4F-EE-00-0F-A2-sensor","version":"1.0","metrics":[]}]}&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;Note, I hardcoded the "hardware_vendor" string, since os.cpus[0].model is returning "05/09" in my Galileo. See below, when I simply run node from the shell in Galileo:&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;gt; require('os');&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;{ endianness: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; hostname: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; loadavg: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; uptime: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; freemem: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; totalmem: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo; color: rgb(52, 187, 199);"&gt;&lt;SPAN style="color: #000000"&gt;&amp;nbsp; cpus: &lt;/SPAN&gt;[Function]&lt;SPAN style="color: #000000"&gt;,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo; color: rgb(52, 187, 199);"&gt;&lt;SPAN style="color: #000000"&gt;&amp;nbsp; type: &lt;/SPAN&gt;[Function]&lt;SPAN style="color: #000000"&gt;,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; release: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; networkInterfaces: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo; color: rgb(52, 187, 199);"&gt;&lt;SPAN style="color: #000000"&gt;&amp;nbsp; arch: &lt;/SPAN&gt;[Function]&lt;SPAN style="color: #000000"&gt;,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; platform: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; tmpdir: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; tmpDir: &lt;SPAN style="color: #34bbc7"&gt;[Function]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; getNetworkInterfaces: &lt;SPAN style="color: #34bbc7"&gt;[Function: deprecated]&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; EOL: &lt;SPAN style="color: #34bd26"&gt;'\n'&lt;/SPAN&gt; }&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;gt; os.cpus()&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;[ { model: &lt;SPAN style="color: #34bd26"&gt;'05/09'&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; &amp;nbsp; speed: &lt;SPAN style="color: #afad24"&gt;399&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp; &amp;nbsp; times:&amp;nbsp;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; { user: &lt;SPAN style="color: #afad24"&gt;457098100&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; nice: &lt;SPAN style="color: #afad24"&gt;0&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; sys: &lt;SPAN style="color: #afad24"&gt;371869100&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; idle: &lt;SPAN style="color: #afad24"&gt;355100&lt;/SPAN&gt;,&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; irq: &lt;SPAN style="color: #afad24"&gt;0&lt;/SPAN&gt; } } ]&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="margin-bottom: 0px; font-size: 14px; line-height: normal; font-family: Menlo;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2014 17:36:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953558#M20159</guid>
      <dc:creator>Pravici</dc:creator>
      <dc:date>2014-04-22T17:36:54Z</dc:date>
    </item>
    <item>
      <title>sorry, not completely clear</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953559#M20160</link>
      <description>&lt;P&gt;sorry, not completely clear to me: to which cloud do you aim to connect?&lt;/P&gt;

&lt;P&gt;BTW: pls post codes in code blocks [see description below comment box]&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;e.g. "\[bash\] / \[/bash\]" for bash&lt;/P&gt;

&lt;P&gt;example - bash "dice game":&lt;/P&gt;

&lt;P&gt;[bash]&lt;BR /&gt;
	echo "dice - quit (q)"; while true; do echo $((RANDOM % 6 + 1)); read -t 2 -n 1 -s q; if &lt;SPAN style="font: 12px/normal arial, helvetica, verdana, sans-serif; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; font-size-adjust: none; font-stretch: normal; background-color: rgb(238, 238, 238); -webkit-text-stroke-width: 0px;"&gt;&amp;amp;#91; &amp;amp;#91;&lt;/SPAN&gt; $q == "q" &lt;SPAN style="font: 12px/normal arial, helvetica, verdana, sans-serif; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; font-size-adjust: none; font-stretch: normal; background-color: rgb(238, 238, 238); -webkit-text-stroke-width: 0px;"&gt;&amp;amp;#93; &amp;amp;#93; &lt;/SPAN&gt;; then break; fi; done&lt;BR /&gt;
	[/bash]&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2014 16:55:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953559#M20160</guid>
      <dc:creator>Matthias_H_Intel</dc:creator>
      <dc:date>2014-04-24T16:55:03Z</dc:date>
    </item>
    <item>
      <title>@Pravici: Duplicate of https:</title>
      <link>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953560#M20161</link>
      <description>&lt;P&gt;@Pravici: Duplicate of &lt;A href="https://software.intel.com/en-us/forums/topic/509743"&gt;https://software.intel.com/en-us/forums/topic/509743&lt;/A&gt; - to be followed up there&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2014 17:11:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Connecting-Beaglebone-Black/m-p/953560#M20161</guid>
      <dc:creator>Matthias_H_Intel</dc:creator>
      <dc:date>2014-04-24T17:11:53Z</dc:date>
    </item>
  </channel>
</rss>

