<?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>Getting started with meshing (nRF52840)</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/55301/getting-started-with-meshing-nrf52840</link><description>Quick project overview: 
 Mesh network using nRF52840. 
 Nodes need to be able to be controlled individually (setting GPIOs) and also report back data (ADC, GPIO state) to a mobile device. The mobile device should show a list of all the nodes in the network</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 20 Dec 2019 14:51:42 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/55301/getting-started-with-meshing-nrf52840" /><item><title>RE: Getting started with meshing (nRF52840)</title><link>https://devzone.nordicsemi.com/thread/226619?ContentTypeID=1</link><pubDate>Fri, 20 Dec 2019 14:51:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2ad6f88a-e407-4843-89fc-8ad25e8afba7</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In that case you would need a different model. You can make a model yourself, with the message formats that you need. See e.g. &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.0.0%2Fmd_doc_libraries_how_to_models.html"&gt;Creating new models&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Getting started with meshing (nRF52840)</title><link>https://devzone.nordicsemi.com/thread/226435?ContentTypeID=1</link><pubDate>Thu, 19 Dec 2019 16:46:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9f2c6bd4-91e7-4e10-8ce1-104f0af104de</guid><dc:creator>ftjandra</dc:creator><description>&lt;p&gt;What if I wanted to send more data than just a simple OnOff. I.e. I want to send a few bytes with additional information.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Getting started with meshing (nRF52840)</title><link>https://devzone.nordicsemi.com/thread/226431?ContentTypeID=1</link><pubDate>Thu, 19 Dec 2019 16:18:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a8b1c990-3284-4ef3-b06e-3d1db5d38396</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In that case, you could still use the OnOff model, but have both a server model and a client model on each node. (You can have multiple models on one node, where some are client models, some are server models.)&lt;/p&gt;
&lt;p&gt;Configure all of the client models to publish to a group address. Configure all the server models to subscribe to that same group address. When a node gets the activation signal (from peripheral, from GPIO, or otherwise) the client model publishes an OnOff message, and all nodes (including itself) gets the message in the server model which turns on/off.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Getting started with meshing (nRF52840)</title><link>https://devzone.nordicsemi.com/thread/226232?ContentTypeID=1</link><pubDate>Wed, 18 Dec 2019 21:50:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8477af83-cfb0-49be-9c98-c7e600873d2e</guid><dc:creator>ftjandra</dc:creator><description>&lt;p&gt;What if I wanted a mesh network where if something happens on one of the nodes (i.e. gpio gets activated) all the other nodes should react to it (i.e. turn on a gpio). This should work for every node in the mesh. Any node could have its gpio externally activated and then every other node should activate a gpio. What would the architecture be for something like this? It&amp;#39;s almost like the light switch example, but each node needs to be a server and client at the same time.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Getting started with meshing (nRF52840)</title><link>https://devzone.nordicsemi.com/thread/224184?ContentTypeID=1</link><pubDate>Fri, 06 Dec 2019 13:08:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f4d6352-f99a-4d8c-b7a1-709d09ebcca9</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;For introductory material on nRF5 SDK for Mesh, have a look at the &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.0.0%2Fmd_doc_getting_started_getting_started.html"&gt;Getting started sections&lt;/a&gt; for nRF5 SDK for Mesh on Infocenter. We have guides showcasing a &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.0.0%2Fmd_models_vendor_simple_on_off_README.html"&gt;simple OnOff model&lt;/a&gt; and for &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.0.0%2Fmd_doc_libraries_how_to_models.html"&gt;creating new models&lt;/a&gt; (found under Libraries -&amp;gt; Mesh models.) For a basic understanding of Bluetooth mesh, you can have a look at &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.0.0%2Fmd_doc_introduction_basic_concepts.html"&gt;Basic Bluetooth Mesh concepts&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In general you can connect from a smartphone to any node in the mesh network that has enabled the GATT Proxy feature, and through that connection reach any other node in the network.&lt;/p&gt;
&lt;p&gt;In order to do DFU directly to the node (not using other mesh nodes for extending the range) you must use the DFU solution from nRF5 SDK. This is the DFU soulution you must use for Low Power Nodes as well.&lt;/p&gt;
&lt;p&gt;The &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.meshsdk.v4.0.0%2Fmd_examples_sdk_coexist_README.html"&gt;coexistence examples&lt;/a&gt; are for situations where you need both a Bluetooth mesh network (with mesh models) and BLE services on the same device. For your use case, it sounds like only the DFU solution needs to be done using BLE (and thus taken from nRF5 SDK.)&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>