<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.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/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Function of ScanStart in Mesh SDK</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/25694/function-of-scanstart-in-mesh-sdk</link><description>How does scanstart serial command work in the Mesh SDK? 
 According to the documentation, it appears that the command lists out unprovisioned beacons. I get a success response but nothing seems to happen in my interactive terminal. 
 I am trying to</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 09 Oct 2017 15:45:24 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/25694/function-of-scanstart-in-mesh-sdk" /><item><title>RE: Function of ScanStart in Mesh SDK</title><link>https://devzone.nordicsemi.com/thread/101219?ContentTypeID=1</link><pubDate>Mon, 09 Oct 2017 15:45:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:997a89cf-1be6-4746-953a-7c66afe67664</guid><dc:creator>Petter Myhre</dc:creator><description>&lt;p&gt;What exacly have you done? Did you follow the Example under Provisioning &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v0.9.2/md_scripts_interactive_pyaci_README.html?cp=4_1_0_4_1_3"&gt;here&lt;/a&gt;?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Function of ScanStart in Mesh SDK</title><link>https://devzone.nordicsemi.com/thread/101221?ContentTypeID=1</link><pubDate>Mon, 09 Oct 2017 14:01:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f7041b4-bf9b-4f20-ad76-c15ef4b095c7</guid><dc:creator>Sai</dc:creator><description>&lt;p&gt;You are right. I am not getting anything.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Function of ScanStart in Mesh SDK</title><link>https://devzone.nordicsemi.com/thread/101220?ContentTypeID=1</link><pubDate>Mon, 09 Oct 2017 11:04:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:643ec96e-4dac-428b-b792-62d74c62bdf5</guid><dc:creator>Petter Myhre</dc:creator><description>&lt;p&gt;&lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v0.9.2/md_doc_libraries_serial_cmd.html?cp=4_1_0_4_1_0_0_10_20#provisioning-scan-start"&gt;Scan start&lt;/a&gt; should start the reporting of incoming unprovisioned beacons. This is done with the &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.meshsdk.v0.9.2/md_doc_libraries_serial_evt.html?cp=4_1_0_4_1_1_0_0_18#prov-unprovisioned-received"&gt;Prov Unprovisioned Received&lt;/a&gt; event.&lt;/p&gt;
&lt;p&gt;This seems to be the relevant part in provisioning.py&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;def __event_handler(self, event):
    if event._opcode == Event.PROV_UNPROVISIONED_RECEIVED:
        if event._data not in self.__unprov_list:
            uuid_fmt = str(hexlify(event._data[&amp;quot;uuid&amp;quot;]), &amp;#39;ascii&amp;#39;).upper()
            self.logger.info(
                &amp;quot;Received UUID {} with RSSI: -{} dB&amp;quot;.format(
                    uuid_fmt, event._data[&amp;quot;rssi&amp;quot;]))
            self.__unprov_list.add(event._data)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Looks like the address isn&amp;#39;t printed, but I guess you can add that yourself.&lt;/p&gt;
&lt;p&gt;But if you get &lt;strong&gt;nothing&lt;/strong&gt; printed this is not the problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>