<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Sensors中的主题 Re: MPR121 Auto-Calibration time</title>
    <link>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286011#M613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Janos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use something like the code below, this code is used to tracking big baseline change when just after power on.&lt;/P&gt;&lt;P&gt;Please let me know if it works to accelerate the initialization and auto-calibration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define TouchThre 10 //15//30//10&lt;/P&gt;&lt;P&gt;#define ReleaThre 6 //8//25//8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void MPR121_init(void) &lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; //Reset MPR121 if not reset correctly&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x80,0x63);&amp;nbsp; //Soft reset&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5E,0x00);&amp;nbsp; //Stop mode&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //touch pad baseline filter&lt;/P&gt;&lt;P&gt;&amp;nbsp; //rising&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2B,0x01); // MAX HALF DELTA Rising&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2C,0x01); // NOISE HALF DELTA Rising&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2D,0x0E); // NOISE COUNT LIMIT Rising&lt;/P&gt;&lt;P&gt;&amp;nbsp; IIC_ByteWrite(0x2E,0x00); // DELAY LIMIT Rising&lt;/P&gt;&lt;P&gt;&amp;nbsp; //falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2F,0x01); // MAX HALF DELTA Falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x30,0x05); // NOISE HALF DELTA Falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x31,0x01); // NOISE COUNT LIMIT Falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x32,0x00); // DELAY LIMIT Falling&lt;/P&gt;&lt;P&gt;&amp;nbsp; //touched&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x33,0x00); // Noise half delta touched &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x34,0x00); // Noise counts touched&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x35,0x00); // Filter delay touched&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //Touch pad threshold&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x41,TouchThre); // ELE0 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x42,ReleaThre); // ELE0 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x43,TouchThre); // ELE1 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x44,ReleaThre); // ELE1 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x45,TouchThre); // ELE2 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x46,ReleaThre); // ELE2 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x47,TouchThre); // ELE3 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x48,ReleaThre); // ELE3 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x49,TouchThre); // ELE4 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4A,ReleaThre); // ELE4 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4B,TouchThre); // ELE5 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4C,ReleaThre); // ELE5 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4D,TouchThre); // ELE6 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4E,ReleaThre); // ELE6 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4F,TouchThre); // ELE7 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x50,ReleaThre); // ELE7 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x51,TouchThre); // ELE8 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x52,ReleaThre); // ELE8 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt;&amp;nbsp; IIC_ByteWrite(0x53,TouchThre); // ELE9 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x54,ReleaThre); // ELE9 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x55,TouchThre); // ELE10 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x56,ReleaThre); // ELE10 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x57,TouchThre); // ELE11 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x58,ReleaThre); // ELE11 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //touch /release debounce&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5B,0x00); &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; // response time = SFI(10) X ESI(8ms) = 80ms &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5D,0x13);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; //FFI=18&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5C,0x80);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //Auto configuration &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x7B,0x8F);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // charge to 70% of Vdd , high sensitivity&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x7D,0xE4); &lt;/P&gt;&lt;P&gt;&amp;nbsp; IIC_ByteWrite(0x7E,0x94); &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x7F,0xCD); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // 12 electrodes enabled&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5E,0xCC);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Mar 2014 18:48:18 GMT</pubDate>
    <dc:creator>reyes</dc:creator>
    <dc:date>2014-03-17T18:48:18Z</dc:date>
    <item>
      <title>MPR121 Auto-Calibration time</title>
      <link>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286010#M612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;i'm just starting using the MPR121, and so far i am highly fascinated.&lt;/P&gt;&lt;P&gt;However i am experiencing a startup time for the auto-calibration, that i would love to see a little lower. I am using 8 channels (0-7), and from power-up it takes the MPR121 around 5-8 seconds to settle. In the debugger of my processor i see the baseline values (0x1E through 0x25) settling towards the decimal values from ~24 to ~39, and when they are settled, touches are recognized nicely.&lt;/P&gt;&lt;P&gt;Is this normal behaviour? Is there any way to speed up the auto-calibration?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i wouldn't want to use auto-calibration, what steps would i need to do to manually calibrate the MPR121?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would it be good practice to store the settled baseline values in flash memory, and use them to initialize the MPR121 at startup? I have also noticed, that when i use defuined baseline values at startup, the auto-calibration will only correct them upwards. I.e., when i preset a channel with baseline=30, where ~24 would be the value at which the calibration would settle, then this value stays at 30 and false touches are recognized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd be glad to hear some of our insights to that startup topic.&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;Janos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2014 00:25:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286010#M612</guid>
      <dc:creator>Janosch</dc:creator>
      <dc:date>2014-03-11T00:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: MPR121 Auto-Calibration time</title>
      <link>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286011#M613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Janos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use something like the code below, this code is used to tracking big baseline change when just after power on.&lt;/P&gt;&lt;P&gt;Please let me know if it works to accelerate the initialization and auto-calibration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define TouchThre 10 //15//30//10&lt;/P&gt;&lt;P&gt;#define ReleaThre 6 //8//25//8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void MPR121_init(void) &lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; //Reset MPR121 if not reset correctly&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x80,0x63);&amp;nbsp; //Soft reset&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5E,0x00);&amp;nbsp; //Stop mode&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //touch pad baseline filter&lt;/P&gt;&lt;P&gt;&amp;nbsp; //rising&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2B,0x01); // MAX HALF DELTA Rising&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2C,0x01); // NOISE HALF DELTA Rising&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2D,0x0E); // NOISE COUNT LIMIT Rising&lt;/P&gt;&lt;P&gt;&amp;nbsp; IIC_ByteWrite(0x2E,0x00); // DELAY LIMIT Rising&lt;/P&gt;&lt;P&gt;&amp;nbsp; //falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x2F,0x01); // MAX HALF DELTA Falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x30,0x05); // NOISE HALF DELTA Falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x31,0x01); // NOISE COUNT LIMIT Falling&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x32,0x00); // DELAY LIMIT Falling&lt;/P&gt;&lt;P&gt;&amp;nbsp; //touched&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x33,0x00); // Noise half delta touched &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x34,0x00); // Noise counts touched&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x35,0x00); // Filter delay touched&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //Touch pad threshold&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x41,TouchThre); // ELE0 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x42,ReleaThre); // ELE0 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x43,TouchThre); // ELE1 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x44,ReleaThre); // ELE1 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x45,TouchThre); // ELE2 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x46,ReleaThre); // ELE2 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x47,TouchThre); // ELE3 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x48,ReleaThre); // ELE3 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x49,TouchThre); // ELE4 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4A,ReleaThre); // ELE4 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4B,TouchThre); // ELE5 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4C,ReleaThre); // ELE5 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4D,TouchThre); // ELE6 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4E,ReleaThre); // ELE6 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x4F,TouchThre); // ELE7 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x50,ReleaThre); // ELE7 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x51,TouchThre); // ELE8 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x52,ReleaThre); // ELE8 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt;&amp;nbsp; IIC_ByteWrite(0x53,TouchThre); // ELE9 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x54,ReleaThre); // ELE9 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x55,TouchThre); // ELE10 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x56,ReleaThre); // ELE10 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x57,TouchThre); // ELE11 TOUCH THRESHOLD&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x58,ReleaThre); // ELE11 RELEASE THRESHOLD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //touch /release debounce&lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5B,0x00); &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; // response time = SFI(10) X ESI(8ms) = 80ms &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5D,0x13);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; //FFI=18&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5C,0x80);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; //Auto configuration &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x7B,0x8F);&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // charge to 70% of Vdd , high sensitivity&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x7D,0xE4); &lt;/P&gt;&lt;P&gt;&amp;nbsp; IIC_ByteWrite(0x7E,0x94); &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x7F,0xCD); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // 12 electrodes enabled&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; IIC_ByteWrite(0x5E,0xCC);&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 18:48:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286011#M613</guid>
      <dc:creator>reyes</dc:creator>
      <dc:date>2014-03-17T18:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: MPR121 Auto-Calibration time</title>
      <link>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286012#M614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it took me some time to get back to the touch sensor, meanwhile i brought the rest of the system into operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for your solution. It works PERFECTLY. From about 3 seconds it now only ... almost _nothing_ until the baseline is settled! This is awesome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will now have to dig in deep into the MPRs configuration possibilities, because i have quite challenging things to achieve with this sensor. Thanks for now for this one!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Janos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 22:56:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Sensors/MPR121-Auto-Calibration-time/m-p/286012#M614</guid>
      <dc:creator>Janosch</dc:creator>
      <dc:date>2014-04-14T22:56:06Z</dc:date>
    </item>
  </channel>
</rss>

