<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[SiPy&#x27;s ID and PAC]]></title><description><![CDATA[<p dir="auto">I have uploaded latest firmware to my first SiPy board.  Apparently it has been succesfully updated to version 1.6.5.b1 and it has been shown an ID and a PAC on the terminal tool. But when I am trying to read id() and pac() from microPython I am getting all FF.</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">from network import Sigfox<br />
sfx=Sigfox(mode=Sigfox.SIGFOX, rcz=Sigfox.RCZ1)<br />
sfx.frequencies()<br />
(868130000, 869525000)</p>
</blockquote>
</blockquote>
<blockquote>
<blockquote>
<p dir="auto"><a href="http://sfx.id" target="_blank" rel="noopener noreferrer nofollow">sfx.id</a>()<br />
b'\xff\xff\xff\xff'</p>
</blockquote>
</blockquote>
<blockquote>
<blockquote>
<p dir="auto">sfx.pac()<br />
b'\xff\xff\xff\xff\xff\xff\xff\xff'</p>
</blockquote>
</blockquote>
<blockquote>
<blockquote></blockquote>
</blockquote>
</blockquote>
<p dir="auto">Do you have any suggestion to get the proper id() and pac()?</p>
]]></description><link>https://forum.pycom.io/topic/782/sipy-s-id-and-pac</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 20:57:58 GMT</lastBuildDate><atom:link href="https://forum.pycom.io/topic/782.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 27 Feb 2017 02:06:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Mon, 27 Feb 2017 02:06:46 GMT]]></title><description><![CDATA[<p dir="auto">I have uploaded latest firmware to my first SiPy board.  Apparently it has been succesfully updated to version 1.6.5.b1 and it has been shown an ID and a PAC on the terminal tool. But when I am trying to read id() and pac() from microPython I am getting all FF.</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">from network import Sigfox<br />
sfx=Sigfox(mode=Sigfox.SIGFOX, rcz=Sigfox.RCZ1)<br />
sfx.frequencies()<br />
(868130000, 869525000)</p>
</blockquote>
</blockquote>
<blockquote>
<blockquote>
<p dir="auto"><a href="http://sfx.id" target="_blank" rel="noopener noreferrer nofollow">sfx.id</a>()<br />
b'\xff\xff\xff\xff'</p>
</blockquote>
</blockquote>
<blockquote>
<blockquote>
<p dir="auto">sfx.pac()<br />
b'\xff\xff\xff\xff\xff\xff\xff\xff'</p>
</blockquote>
</blockquote>
<blockquote>
<blockquote></blockquote>
</blockquote>
</blockquote>
<p dir="auto">Do you have any suggestion to get the proper id() and pac()?</p>
]]></description><link>https://forum.pycom.io/post/4622</link><guid isPermaLink="true">https://forum.pycom.io/post/4622</guid><dc:creator><![CDATA[Jordi]]></dc:creator><pubDate>Mon, 27 Feb 2017 02:06:46 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Mon, 27 Feb 2017 10:00:24 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/966">@Jordi</a>,</p>
<p dir="auto">You need to convert the binary values to human readable with the following snippet of code:</p>
<pre><code>from network import Sigfox
import binascii

# initalise Sigfox for RCZ1 (You may need a different RCZ Region)
sigfox = Sigfox(mode=Sigfox.SIGFOX, rcz=Sigfox.RCZ1)

# print Sigfox Device ID
print(binascii.hexlify(sigfox.id()))

# print Sigfox PAC number
print(binascii.hexlify(sigfox.pac()))</code></pre>
]]></description><link>https://forum.pycom.io/post/4651</link><guid isPermaLink="true">https://forum.pycom.io/post/4651</guid><dc:creator><![CDATA[bucknall]]></dc:creator><pubDate>Mon, 27 Feb 2017 10:00:24 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Mon, 27 Feb 2017 23:25:11 GMT]]></title><description><![CDATA[<p dir="auto">Thank you <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/823">@bucknall</a></p>
<p dir="auto">When SiPy is uploaded:</p>
<p dir="auto"><img src="/uploads/files/1488237807798-id_pac_esb.png" alt="0_1488237807233_ID_PAC_esb.png" class="img-responsive img-markdown" /></p>
<p dir="auto">And using suggested code:</p>
<p dir="auto"><img src="/uploads/files/1488237571147-captura-de-2017-02-28-00-18-33-resized.png" alt="0_1488237570753_Captura de 2017-02-28 00:18:33.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.pycom.io/post/4689</link><guid isPermaLink="true">https://forum.pycom.io/post/4689</guid><dc:creator><![CDATA[Jordi]]></dc:creator><pubDate>Mon, 27 Feb 2017 23:25:11 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 28 Feb 2017 09:17:28 GMT]]></title><description><![CDATA[<p dir="auto">Hmm this is interesting let us ask <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/6">@daniel</a> and move this over to firmware - seems very odd!</p>
]]></description><link>https://forum.pycom.io/post/4702</link><guid isPermaLink="true">https://forum.pycom.io/post/4702</guid><dc:creator><![CDATA[bucknall]]></dc:creator><pubDate>Tue, 28 Feb 2017 09:17:28 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 28 Feb 2017 11:28:10 GMT]]></title><description><![CDATA[<p dir="auto">How do you get your print functions to output to Pycom Console? My console only shows all the other stuff, never the actually desired output.</p>
]]></description><link>https://forum.pycom.io/post/4711</link><guid isPermaLink="true">https://forum.pycom.io/post/4711</guid><dc:creator><![CDATA[maku]]></dc:creator><pubDate>Tue, 28 Feb 2017 11:28:10 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 28 Feb 2017 11:29:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/734">@maku</a> can you post a picture of what your console looks like? You might have some settings configured differently.</p>
]]></description><link>https://forum.pycom.io/post/4712</link><guid isPermaLink="true">https://forum.pycom.io/post/4712</guid><dc:creator><![CDATA[bucknall]]></dc:creator><pubDate>Tue, 28 Feb 2017 11:29:13 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 28 Feb 2017 11:38:34 GMT]]></title><description><![CDATA[<p dir="auto"><img src="/uploads/files/1488281905400-pymakr_pycomconsole-resized.png" alt="0_1488281900584_Pymakr_PycomConsole.png" class="img-responsive img-markdown" /></p>
<p dir="auto">It works one out of 20. But this is the very usual output.</p>
]]></description><link>https://forum.pycom.io/post/4713</link><guid isPermaLink="true">https://forum.pycom.io/post/4713</guid><dc:creator><![CDATA[maku]]></dc:creator><pubDate>Tue, 28 Feb 2017 11:38:34 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 28 Feb 2017 14:47:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/823">@bucknall</a> I would like to try any firmware previous version.<br />
<img src="/uploads/files/1488293051811-captura-de-2017-02-28-15-43-48.png" alt="0_1488293051741_Captura de 2017-02-28 15:43:48.png" class="img-responsive img-markdown" /></p>
<p dir="auto">But <a href="https://www.pycom.io/support/supportdownloads/#firmware" target="_blank" rel="noopener noreferrer nofollow">https://www.pycom.io/support/supportdownloads/#firmware</a> is down right now.</p>
<p dir="auto"><img src="/uploads/files/1488293005117-captura-de-2017-02-28-15-41-28-resized.png" alt="0_1488293004623_Captura de 2017-02-28 15:41:28.png" class="img-responsive img-markdown" /></p>
<p dir="auto">I will appreciate any tested firmware to be able to try <a href="https://github.com/pycom/pycom-libraries/blob/master/examples/sigfoxUplink/main.py" target="_blank" rel="noopener noreferrer nofollow">https://github.com/pycom/pycom-libraries/blob/master/examples/sigfoxUplink/main.py</a> on SiPy</p>
]]></description><link>https://forum.pycom.io/post/4725</link><guid isPermaLink="true">https://forum.pycom.io/post/4725</guid><dc:creator><![CDATA[Jordi]]></dc:creator><pubDate>Tue, 28 Feb 2017 14:47:01 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 07 Mar 2017 12:36:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/966">@Jordi</a> this is a ver estrange issue and it appears that the tool is not able to program the PAC and ID on your board. We haven't changed anything around the Sigfox ID/PAC registration process, but can you try updating to 1.6.7.b1?</p>
<p dir="auto">If that doesn't work, please email me your WiFi MAC address to support at <a href="http://pycom.io" target="_blank" rel="noopener noreferrer nofollow">pycom.io</a> so that we can have a look in our database. Get the mac like this:</p>
<pre><code>from network import WLAN
import binascii

binascii.hexlify(WLAN().mac())
</code></pre>
]]></description><link>https://forum.pycom.io/post/5018</link><guid isPermaLink="true">https://forum.pycom.io/post/5018</guid><dc:creator><![CDATA[daniel]]></dc:creator><pubDate>Tue, 07 Mar 2017 12:36:57 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Wed, 08 Mar 2017 19:21:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/6">@daniel</a> Fortunately I have tried your Pycom Firmware Update from a virtualized Windows on Debian.</p>
<p dir="auto">Using Linux firmware updater on Debian, reading from Python SiPy ID and PAC are all ffff.fff. But using Windows updater version, I am able to read properly  ID and PAC from Python (Linux or Windows).</p>
<p dir="auto">Hopefully  you will be able to  check and fix updater for Linux.</p>
<p dir="auto">Thank you for your answers and collaboration.</p>
]]></description><link>https://forum.pycom.io/post/5064</link><guid isPermaLink="true">https://forum.pycom.io/post/5064</guid><dc:creator><![CDATA[Jordi]]></dc:creator><pubDate>Wed, 08 Mar 2017 19:21:49 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Fri, 10 Mar 2017 12:51:46 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/823">@bucknall</a>!</p>
<p dir="auto">Even if I use the mentioned snippet the same output can be seen, i.e. b'ffffffff'. Any suggestion?</p>
<p dir="auto">Mike</p>
]]></description><link>https://forum.pycom.io/post/5144</link><guid isPermaLink="true">https://forum.pycom.io/post/5144</guid><dc:creator><![CDATA[michal.zykov]]></dc:creator><pubDate>Fri, 10 Mar 2017 12:51:46 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Fri, 10 Mar 2017 12:52:56 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/1045">@michal.zykov</a>! First of all, have you updated your SiPy? And if so are you using Debian (Linux) to update your device?</p>
]]></description><link>https://forum.pycom.io/post/5145</link><guid isPermaLink="true">https://forum.pycom.io/post/5145</guid><dc:creator><![CDATA[bucknall]]></dc:creator><pubDate>Fri, 10 Mar 2017 12:52:56 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Fri, 10 Mar 2017 13:02:02 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/823">@bucknall</a>!</p>
<p dir="auto">Yep, I already updated SiPy by using Linux updater (Fedora 25) - SiPy firmware 1.6.7.b1. I'm able to send a print-screen that it was successful.</p>
<p dir="auto">Thx,<br />
Mike</p>
]]></description><link>https://forum.pycom.io/post/5146</link><guid isPermaLink="true">https://forum.pycom.io/post/5146</guid><dc:creator><![CDATA[michal.zykov]]></dc:creator><pubDate>Fri, 10 Mar 2017 13:02:02 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Fri, 10 Mar 2017 13:13:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/1045">@michal.zykov</a>, we've identified a problem with the Linux Firmware Updater and are handling it now. If you could use the Windows or Mac OS Firmware Update tool, that should get you up &amp; running for the time being!</p>
<p dir="auto">Apologies about this! We're working to get it sorted asap!</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://forum.pycom.io/post/5147</link><guid isPermaLink="true">https://forum.pycom.io/post/5147</guid><dc:creator><![CDATA[bucknall]]></dc:creator><pubDate>Fri, 10 Mar 2017 13:13:41 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Sat, 11 Mar 2017 12:24:01 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/823">@bucknall</a>!</p>
<p dir="auto">I've tried to re-flash SiPy by using MS Windows firmware updater. It works great! Thank you! Hope, you'll be able to fix Linux firmware updater soon.</p>
<p dir="auto">Mike</p>
]]></description><link>https://forum.pycom.io/post/5179</link><guid isPermaLink="true">https://forum.pycom.io/post/5179</guid><dc:creator><![CDATA[michal.zykov]]></dc:creator><pubDate>Sat, 11 Mar 2017 12:24:01 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Sun, 17 Jun 2018 20:56:05 GMT]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">I have the same problem. How could I find the right Device ID and PAC?</p>
<p dir="auto">I'm using Mac OS X.</p>
]]></description><link>https://forum.pycom.io/post/20331</link><guid isPermaLink="true">https://forum.pycom.io/post/20331</guid><dc:creator><![CDATA[josep.salom]]></dc:creator><pubDate>Sun, 17 Jun 2018 20:56:05 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Mon, 18 Jun 2018 10:38:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/2843">@josep-salom</a> Can you please provide more details? What is the output you get from the commands?</p>
]]></description><link>https://forum.pycom.io/post/20341</link><guid isPermaLink="true">https://forum.pycom.io/post/20341</guid><dc:creator><![CDATA[Xykon]]></dc:creator><pubDate>Mon, 18 Jun 2018 10:38:24 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 19 Jun 2018 05:53:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/69">@xykon</a> I'm using the procedure as indicated in <a href="https://docs.pycom.io/chapter/gettingstarted/registration/sigfox.html" target="_blank" rel="noopener noreferrer nofollow">https://docs.pycom.io/chapter/gettingstarted/registration/sigfox.html</a>, and I got:</p>
<pre><code>&gt;&gt;&gt;
b'ffffffff'
b'ffffffffffffffff'
&gt;
MicroPython v1.8.6-470-gf41d0f27 on 2017-02-22; SiPy with ESP32
Type &quot;help()&quot; for more information.
&gt;&gt;&gt;
</code></pre>
<p dir="auto">which are not correct ID and PAC.</p>
<p dir="auto">I'm using SiPy module with Pysense, on a Mac OS X 10.11.6 running Visual Studio Code.</p>
]]></description><link>https://forum.pycom.io/post/20351</link><guid isPermaLink="true">https://forum.pycom.io/post/20351</guid><dc:creator><![CDATA[josep.salom]]></dc:creator><pubDate>Tue, 19 Jun 2018 05:53:39 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 19 Jun 2018 07:04:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/69">@xykon</a> I've just upgraded SiPy and still have the problem:</p>
<pre><code>&gt;&gt;&gt;
b'ffffffff'
b'ffffffffffffffff'
&gt;
Pycom MicroPython 1.18.0 [v1.8.6-849-046b350] on 2018-06-01; SiPy with ESP32
Type &quot;help()&quot; for more information.
&gt;&gt;&gt;
</code></pre>
<p dir="auto">How could I get the right ID and PAC?</p>
]]></description><link>https://forum.pycom.io/post/20355</link><guid isPermaLink="true">https://forum.pycom.io/post/20355</guid><dc:creator><![CDATA[josep.salom]]></dc:creator><pubDate>Tue, 19 Jun 2018 07:04:17 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 19 Jun 2018 08:45:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/2843">@josep-salom</a> Sigfox registration requires using the firmware updater in online mode.</p>
]]></description><link>https://forum.pycom.io/post/20359</link><guid isPermaLink="true">https://forum.pycom.io/post/20359</guid><dc:creator><![CDATA[Xykon]]></dc:creator><pubDate>Tue, 19 Jun 2018 08:45:30 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 19 Jun 2018 11:14:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/69">@xykon</a> So sorry, I'm very new on that. What does it exactly mean? How should I do that?</p>
]]></description><link>https://forum.pycom.io/post/20366</link><guid isPermaLink="true">https://forum.pycom.io/post/20366</guid><dc:creator><![CDATA[josep.salom]]></dc:creator><pubDate>Tue, 19 Jun 2018 11:14:55 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 19 Jun 2018 11:38:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/2843">@josep-salom</a> You need to solve <a href="https://forum.pycom.io/topic/3269/could-not-connect-to-the-update-server/7">this problem first</a> so that you can use the firmware updater in online mode. This is required to get your Sigfox ID and PAC allocated. I suggest you email us with your IP address so that we can do some testing.</p>
]]></description><link>https://forum.pycom.io/post/20367</link><guid isPermaLink="true">https://forum.pycom.io/post/20367</guid><dc:creator><![CDATA[Xykon]]></dc:creator><pubDate>Tue, 19 Jun 2018 11:38:47 GMT</pubDate></item><item><title><![CDATA[Reply to SiPy&#x27;s ID and PAC on Tue, 17 Jul 2018 16:32:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.pycom.io/uid/823">@bucknall</a> For SIgfox backend registration I beleive I need to put the ID and and PAC out put from with hexlifiy</p>
<p dir="auto">print(&quot;ID &quot;,  ubinascii.hexlify(<a href="http://sigfox.id" target="_blank" rel="noopener noreferrer nofollow">sigfox.id</a>()))<br />
print(&quot;PAC &quot;, ubinascii.hexlify(sigfox.pac()))</p>
<p dir="auto">in my case is:</p>
<p dir="auto">ID  b'004e3d90'<br />
PAC  b'c957cd18b7848c0'</p>
<p dir="auto">so ID that I typed is '004e3d90'  and  PAC 'c957cd18b7848c0'</p>
<p dir="auto">The device seems to be registered but on  backend device webpage I can not see it online at all. How I do I know when is connected to the  (Luxembourg) Sigfox network and will get online?</p>
<p dir="auto">It is done immediately or shall I wait?</p>
]]></description><link>https://forum.pycom.io/post/20933</link><guid isPermaLink="true">https://forum.pycom.io/post/20933</guid><dc:creator><![CDATA[Colateral]]></dc:creator><pubDate>Tue, 17 Jul 2018 16:32:39 GMT</pubDate></item></channel></rss>