<?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>Sending notifications from nRf52832 to nRF Connet</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/62310/sending-notifications-from-nrf52832-to-nrf-connet</link><description>Hi, 
 In my application I have a requirement to send notifications to mobile on triggering particular Interrupts as well as particular events.I have created a customised notification service having one character.I tried implementing in such a way that</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 12 Jun 2020 06:45:30 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/62310/sending-notifications-from-nrf52832-to-nrf-connet" /><item><title>RE: Sending notifications from nRf52832 to nRF Connet</title><link>https://devzone.nordicsemi.com/thread/254598?ContentTypeID=1</link><pubDate>Fri, 12 Jun 2020 06:45:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:261f78c2-f8f6-4194-b47d-90be9500d304</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;You should check out the developer documentation for whatever mobile OS you are using? The BLE profiles aren&amp;#39;t specific to particular hardware, and as I said it is the OS on the phone that handles indications/notifications on that side. iOS does have a service for this and can be found in the&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v16.0.0/ble_sdk_app_ancs.html"&gt; Apple Notification Center Service documentation on our Infocenter&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending notifications from nRf52832 to nRF Connet</title><link>https://devzone.nordicsemi.com/thread/254393?ContentTypeID=1</link><pubDate>Thu, 11 Jun 2020 08:32:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b4073e1b-b15e-4a52-8053-03095970070d</guid><dc:creator>swathi p</dc:creator><description>&lt;p&gt;I tried creating a notification service by following battery service,iam able to update value into the characteristic.But what I need is to get notification/pop-up with a string on mobile depending upon the changed value of characteristic.Can you please suggest me how do I follow to implement such requirement.&lt;/p&gt;
&lt;p&gt;Thanks &amp;amp; Regards,&lt;/p&gt;
&lt;p&gt;Swathi P&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending notifications from nRf52832 to nRF Connet</title><link>https://devzone.nordicsemi.com/thread/254204?ContentTypeID=1</link><pubDate>Wed, 10 Jun 2020 09:48:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1629d9e1-95c2-4269-880c-2e73b7ae929a</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Case 1 &amp;amp; 2&lt;/strong&gt;: In the central that is receiving notifications (whether it is an nRF chip or a phone), you will need a service client/handler that is able to handle the notifications from the peripherals notification service.&lt;/li&gt;
&lt;li&gt;Yes, you will need the according service handler on the client side to match the service that the server is providing.&lt;/li&gt;
&lt;li&gt;Yes, I think you should be able to start out with the battery service in order to create a notification service updating the phone every second or so.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending notifications from nRf52832 to nRF Connet</title><link>https://devzone.nordicsemi.com/thread/254138?ContentTypeID=1</link><pubDate>Wed, 10 Jun 2020 05:37:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:50003c8a-a24c-4279-bc59-7e7275aa9b73</guid><dc:creator>swathi p</dc:creator><description>&lt;p&gt;Thank you for the response.Please can you make me clear on below points.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Case1&lt;/strong&gt;:If I want to send some notification/data from mobile to nRF52832 then Should I have to create service on nRF52832?&lt;strong&gt;Case2&lt;/strong&gt;:If I choose to send notification/data from nRF52832 to mobile then Should I have to create service on mobile?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If I am considering nRF52832 as server and mobile as client,while implementing&amp;nbsp; services as in Case1 I have to create service using gatts structure as it is been created on server side and while implementing services as in case2 I have to create service using gattc structure as it is been created on client side.Am I right?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In Alert Notification example,service is implemented on client side upon button press we are able to set cccd values on application.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;After I have&amp;nbsp; posted question,I went on looking into exsisting examples looking for the service that is updating the value of characteristics.Then I found Battery service where it is updating the characteristic value every 1sec.I found it suiting my application.Am I right ?can I implement notification service using battery service concept.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Thanks &amp;amp; Regards,&lt;/p&gt;
&lt;p&gt;Swathi P&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending notifications from nRf52832 to nRF Connet</title><link>https://devzone.nordicsemi.com/thread/254034?ContentTypeID=1</link><pubDate>Tue, 09 Jun 2020 12:05:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2cf77620-caeb-4017-99aa-408c4a5b45b3</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi Swathi&lt;/p&gt;
&lt;p&gt;Please check out the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v16.0.0/ble_sdk_app_alert_notification.html"&gt;Alert Notification Application&lt;/a&gt; example project in our SDK. It connects and alerts an application about an incoming call using buttons on the DK, and it&amp;nbsp;is able to print text strings. Keep in mind that it is the operating system on the phone and not the app itself that handles notifications and indications.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>