<?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>Does a NRF51822 Beacon recognize that it is in range of a smartphone?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/5129/does-a-nrf51822-beacon-recognize-that-it-is-in-range-of-a-smartphone</link><description>Hello, 
 my idea is to turn on a GPIO-Pin of the NRF51822-Beacon-Kit when my smartphone found the beacon. Of course if the smartphone is out of range or far away the pin should turn off again.
So my question is: Does the Beacon recognize in any way</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 14 Jan 2015 11:01:01 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/5129/does-a-nrf51822-beacon-recognize-that-it-is-in-range-of-a-smartphone" /><item><title>RE: Does a NRF51822 Beacon recognize that it is in range of a smartphone?</title><link>https://devzone.nordicsemi.com/thread/18005?ContentTypeID=1</link><pubDate>Wed, 14 Jan 2015 11:01:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:604a2060-ef1c-4c74-84c0-013e78056820</guid><dc:creator>Stefan Birnir Sverrisson</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;A beacon device is a non-connectable broadcasting device, which means it is constantly in advertising mode and will not receive any packets. The non-connectable broadcasting mode is defined with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;m_adv_params.type        = BLE_GAP_ADV_TYPE_ADV_NONCONN_IND;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;in advertising_init() function. An idea is to change this to be a scannable advertising:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;m_adv_params.type        = BLE_GAP_ADV_TYPE_ADV_SCAN_IND;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;which will allow the device to listen for scan requests from a central. That way, you could &lt;a href="https://devzone.nordicsemi.com/question/7476/how-to-get-rssi/"&gt;enable RSSI&lt;/a&gt; at the same time to detect the signal strength from the central device.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update 14.1.2014&lt;/strong&gt;
I must correct myself. For current S110 softdevice version (S110 v7.1.0) the device must be connected in order for the application to receive RSSI event from the softdevice.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>