<?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>enabling notifications from example &amp;quot;Thingy Mesh Demo v0.1&amp;quot;</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/55328/enabling-notifications-from-example-thingy-mesh-demo-v0-1</link><description>Hello. In acrording to: 
 How the bridge exchange information between mesh network and mobile device 
 The bridge using Nordic UART Service to conduct the command/response between mesh nodes and mobile device 
 
 Nordic UART Service UUID 6E400001-B5A3</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 10 Dec 2019 14:58:03 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/55328/enabling-notifications-from-example-thingy-mesh-demo-v0-1" /><item><title>RE: enabling notifications from example "Thingy Mesh Demo v0.1"</title><link>https://devzone.nordicsemi.com/thread/224776?ContentTypeID=1</link><pubDate>Tue, 10 Dec 2019 14:58:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4dc184da-4401-4e4c-af00-dd371483faa9</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Matej,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Using BLE-UART to control LED can be very convenience but it&amp;#39;s a proprietary solution. It won&amp;#39;t work with other vendors. And as you mentioned, it maybe harder to do provisioning and unprovisioning from the phone.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We will update the example in the near future with new SDK and with support for provisioning from the phone. It will be updated on github in the next few weeks.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;In the mean time you can have a look at the&amp;nbsp;&lt;a href="https://github.com/NordicPlayground/thingy52-mesh-provisioning-demo"&gt;https://github.com/NordicPlayground/thingy52-mesh-provisioning-demo&lt;/a&gt;&amp;nbsp;demo. It based on the light switch example in the SDK. There is no UART service however it&amp;#39;s possible to add the service.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: enabling notifications from example "Thingy Mesh Demo v0.1"</title><link>https://devzone.nordicsemi.com/thread/224637?ContentTypeID=1</link><pubDate>Tue, 10 Dec 2019 09:37:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:45d93b13-5742-4a81-ba9f-9feac20152cd</guid><dc:creator>matej1410</dc:creator><description>&lt;p&gt;Hung Bui thank you very much for response :-)&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I created my own Android app because author of this:&amp;nbsp;&lt;a href="https://github.com/NordicPlayground/Nordic-Thingy52-mesh-demo"&gt;https://github.com/NordicPlayground/Nordic-Thingy52-mesh-demo&lt;/a&gt;&amp;nbsp;tutorial described very crearly comand description and example. I understand that&amp;nbsp;its old example but I can provisioning now and add new node to group, change colour of node led etc.&lt;/p&gt;
&lt;p&gt;I dont know what should I do next. This example with sending command&amp;nbsp;with UART is very good for me because is easy but it is not solid (compound, developed).&amp;nbsp;because I can&amp;#39;t for example unprovision node/nodes (autor does not describe or mayby it is imposible in this example. I dont know).&lt;/p&gt;
&lt;p&gt;Could you give me some information please about this problem? Are there some another examples&amp;nbsp;more complex and with UART command sending support?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Problem with UUID solved.&lt;/p&gt;
&lt;p&gt;Now it works. Under you can find the snippet with correct UUID.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;                gatt.setCharacteristicNotification(characteristic, true);
                BluetoothGattDescriptor descriptor = characteristic.getDescriptor(UUID.fromString(&amp;quot;00002902-0000-1000-8000-00805f9b34fb&amp;quot;));
                descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
                gatt.writeDescriptor(descriptor);&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: enabling notifications from example "Thingy Mesh Demo v0.1"</title><link>https://devzone.nordicsemi.com/thread/224520?ContentTypeID=1</link><pubDate>Mon, 09 Dec 2019 15:54:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:82db1edb-814f-4860-b6cf-199a9f5152dd</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Have you tried&amp;nbsp;&lt;span&gt;6E400002-B5A3-F393-E0A9-E50E24DCCA9E ?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Have you tested with the nRF Connect app ? (so you can enable notification manually )&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I would suggest to have a look into the nRF Toolbox app where we have the UART profile.&amp;nbsp; You can write your app to make it work with the ble_app_uart example in the NRF5 SDK before you start playing with the mesh demo. The nRFToolbox app source code is provided here:&amp;nbsp;&lt;a href="https://github.com/NordicSemiconductor/Android-nRF-Toolbox"&gt;https://github.com/NordicSemiconductor/Android-nRF-Toolbox&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Please be aware that the demo is pretty old, it based on Mesh SDK v1.0.1. We will provide a newer version in the future.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>