<?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>RedBear BLE Nano 2</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/24579/redbear-ble-nano-2</link><description>I am admittedly a little lost here: 
 I am trying to utilize a RedBear BLE Nano 2 (nrf52832) to collect serial data from a sensor and send it to a raspberry pi every 15 minutes, using as little power as possible. 
 There are so many options when it</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 23 Aug 2017 18:47:11 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/24579/redbear-ble-nano-2" /><item><title>RE: RedBear BLE Nano 2</title><link>https://devzone.nordicsemi.com/thread/96766?ContentTypeID=1</link><pubDate>Wed, 23 Aug 2017 18:47:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fdbcec32-62d8-458e-8d39-c790d998ba27</guid><dc:creator>stheinema</dc:creator><description>&lt;p&gt;Thanks endnode!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RedBear BLE Nano 2</title><link>https://devzone.nordicsemi.com/thread/96764?ContentTypeID=1</link><pubDate>Wed, 23 Aug 2017 15:52:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:81975040-256e-407b-b561-06613a7be7be</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Also if your observer will be RPI3 with built-in BLE stack and API then any Nordic example of that part is pretty much useless, right? That&amp;#39;s why I asked what device will be the second peer... you should then go to their forum and try to get some help there.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RedBear BLE Nano 2</title><link>https://devzone.nordicsemi.com/thread/96763?ContentTypeID=1</link><pubDate>Wed, 23 Aug 2017 15:51:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b655ce14-d439-4f17-a643-1be1be45e012</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Observer is very easy thing, basically just BLE stack (SD) set-up/init and enable during boot, start scanning and receive single event type for the rest of FW life-time in event handler. That&amp;#39;s it, you really can make such FW even when starting from scratch;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RedBear BLE Nano 2</title><link>https://devzone.nordicsemi.com/thread/96765?ContentTypeID=1</link><pubDate>Wed, 23 Aug 2017 15:07:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ae5d07fa-d9dc-4f37-a824-01bea25fba56</guid><dc:creator>stheinema</dc:creator><description>&lt;p&gt;Thanks so much for the quick reply endnode! That get&amp;#39;s me pointed in a good direction.&lt;/p&gt;
&lt;p&gt;The nRF52 will be wired to a sensor and will send the collected data over the air to RPI. RPI3 Model B has BLE built in.&lt;/p&gt;
&lt;p&gt;I would be fine with a less than 100% reliable link, as the more important piece will be low power consumption, so I will take your advice to go with the simple boradcaster/observer design.&lt;/p&gt;
&lt;p&gt;It looks like there is a good existing tutorial regarding BLE central: &lt;a href="https://devzone.nordicsemi.com/tutorials/21/ble-central-tutorial/"&gt;devzone.nordicsemi.com/.../&lt;/a&gt; ..however this tutorial would seem to explain the Nordic BLE UART Service rather than the simple boradcaster/observer design.&lt;/p&gt;
&lt;p&gt;Are there any additional existing tutorials that might be helpful?&lt;/p&gt;
&lt;p&gt;Thanks again!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RedBear BLE Nano 2</title><link>https://devzone.nordicsemi.com/thread/96762?ContentTypeID=1</link><pubDate>Tue, 22 Aug 2017 23:46:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d11aefb0-7dc5-4c64-b380-1dda2a5872d4</guid><dc:creator>endnode</dc:creator><description>&lt;p&gt;Sorry but what is the architecture exactly? Board with nRF52 will be receiving data over the air from sensors and feed RPI over serial interface or it will only collect data from sensors (over wires) and transport to RPI over the air? Is latter then how you enable RPI with BLE radio?&lt;/p&gt;
&lt;p&gt;Anyway as soon as you clean up these things you will arrive to something like this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Use the latest nRF5 SDK (v14.0.0 as of today) and S132 SoftDevice (= Nordic BLE stack, V5.0.0 as of today).&lt;/li&gt;
&lt;li&gt;If you want to use connection link based solution (reliable transport but probably little bit more power hungry on nRF52 side) then look at Nordic BLE UART Service examples (&lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\examples\ble_peripheral\ble_app_uart&lt;/code&gt; and &lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\examples\ble_central\ble_app_uart_c&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;If you are fine to have not 100% reliable link but the lowest power consumption possible (only on sensor side, on RPI side it will go up by several levels compared to previous architecture) then go with simple broadcaster (beacon) and observer (scanner) examples (e.g. &lt;code&gt;nRF5_SDK_14.0.0_3bcc1f7\examples\ble_peripheral\ble_app_beacon&lt;/code&gt; and any BLE Central project).&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>