<?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>new proyect with nRF52840, how to start.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/84470/new-proyect-with-nrf52840-how-to-start</link><description>hello, im using nRF52840, pca10056, I was using the example ble uart from examples\peripheral\uart im planning on replacing the use of &amp;quot;putty&amp;quot; PC application with a program specifically developed to capture and store the information of the messages that</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 11 Feb 2022 13:20:50 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/84470/new-proyect-with-nrf52840-how-to-start" /><item><title>RE: new proyect with nRF52840, how to start.</title><link>https://devzone.nordicsemi.com/thread/352627?ContentTypeID=1</link><pubDate>Fri, 11 Feb 2022 13:20:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5b7af042-3862-4405-8583-2db1270bcfcc</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;a href="https://stackoverflow.com/questions/33267070/no-module-named-serial"&gt;You need to install the package. Use PIP.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Also, note that this is not directly related to our products so there is a limit of how much I can support you with this.&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: new proyect with nRF52840, how to start.</title><link>https://devzone.nordicsemi.com/thread/352604?ContentTypeID=1</link><pubDate>Fri, 11 Feb 2022 12:45:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:445ec524-64d9-42a1-a205-25b41632e6ff</guid><dc:creator>anaglez97</dc:creator><description>&lt;p&gt;im having error executing serial in python, im using visual studio code&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1644583516509v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: new proyect with nRF52840, how to start.</title><link>https://devzone.nordicsemi.com/thread/351999?ContentTypeID=1</link><pubDate>Wed, 09 Feb 2022 10:08:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:66458e13-0ec4-4060-9a03-d4796fd63dd6</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi.&lt;/p&gt;
[quote user="anaglez97"]i want to send/recieve data from pc to mobile phone by bluetooth[/quote]
&lt;p&gt;See &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/ble_sdk_app_nus_eval.html?cp=8_1_4_2_2_25"&gt;this &lt;/a&gt;example.&lt;/p&gt;
[quote user="anaglez97"]store the data in a file (txt) using python.[/quote]
&lt;p&gt;This code snippet shows how to retrieve data from a COM part in Python:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="python"&gt;import serial

s = serial.Serial(&amp;#39;COM9&amp;#39;, 115200, timeout=None,parity =serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS)
res = s.read()
print(&amp;quot;Started&amp;quot;)


while 1:
  res = s.read()
  print(res)
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;To store the data in a text file&amp;nbsp;see &lt;a href="https://docs.python.org/3/tutorial/inputoutput.html"&gt;this&lt;/a&gt; documentation and &lt;a href="https://www.pythontutorial.net/python-basics/python-write-text-file/"&gt;this example&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: new proyect with nRF52840, how to start.</title><link>https://devzone.nordicsemi.com/thread/351811?ContentTypeID=1</link><pubDate>Tue, 08 Feb 2022 13:07:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:06bc6b8f-213a-486c-8f45-9e149732488b</guid><dc:creator>anaglez97</dc:creator><description>&lt;p&gt;i want to send/recieve data from pc to mobile phone by bluetooth and store the data in a file (txt) using python.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: new proyect with nRF52840, how to start.</title><link>https://devzone.nordicsemi.com/thread/351809?ContentTypeID=1</link><pubDate>Tue, 08 Feb 2022 13:04:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1aa1c7cd-af8b-426e-aba4-17e79bdad523</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not sure exactly what the problem is, could you elaborate?&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>