<?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>MCUXpresso IDEのトピックAddress pca9956btwy</title>
    <link>https://community.nxp.com/t5/MCUXpresso-IDE/Address-pca9956btwy/m-p/2102819#M10381</link>
    <description>&lt;P&gt;Good morning,&lt;BR /&gt;I am using the pca9956btwy component with mcuxc242 to control a 7-segment display via i2c. Looking at the instruction manual I notice that if I configure with address 0x02 hexadecimal there is an R/W address with 04h next to it. Which address should I point to?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Transidico_0-1747926798716.png" style="width: 579px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/339277i67D8B200DE012A07/image-dimensions/579x270?v=v2" width="579" height="270" role="button" title="Transidico_0-1747926798716.png" alt="Transidico_0-1747926798716.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Transidico_0-1747926798716.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I ask this because I set the&amp;nbsp;component&amp;nbsp; the first time with address 0x03 and everything works correctly, then I configured it with an address other than 0x03 and it doesn't respond.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if I configure it with address 0x02 do I point to address 0x02 to write or 0x04?&lt;/P&gt;&lt;P&gt;Thank you in advice.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 May 2025 15:18:18 GMT</pubDate>
    <dc:creator>Transidico</dc:creator>
    <dc:date>2025-05-22T15:18:18Z</dc:date>
    <item>
      <title>Address pca9956btwy</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Address-pca9956btwy/m-p/2102819#M10381</link>
      <description>&lt;P&gt;Good morning,&lt;BR /&gt;I am using the pca9956btwy component with mcuxc242 to control a 7-segment display via i2c. Looking at the instruction manual I notice that if I configure with address 0x02 hexadecimal there is an R/W address with 04h next to it. Which address should I point to?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Transidico_0-1747926798716.png" style="width: 579px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/339277i67D8B200DE012A07/image-dimensions/579x270?v=v2" width="579" height="270" role="button" title="Transidico_0-1747926798716.png" alt="Transidico_0-1747926798716.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Transidico_0-1747926798716.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I ask this because I set the&amp;nbsp;component&amp;nbsp; the first time with address 0x03 and everything works correctly, then I configured it with an address other than 0x03 and it doesn't respond.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if I configure it with address 0x02 do I point to address 0x02 to write or 0x04?&lt;/P&gt;&lt;P&gt;Thank you in advice.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 15:18:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Address-pca9956btwy/m-p/2102819#M10381</guid>
      <dc:creator>Transidico</dc:creator>
      <dc:date>2025-05-22T15:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Address pca9956btwy</title>
      <link>https://community.nxp.com/t5/MCUXpresso-IDE/Address-pca9956btwy/m-p/2103248#M10382</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/240937"&gt;@Transidico&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The table shows a 7-bit address in the "Binary (A[6:0])" column.&lt;/P&gt;
&lt;P&gt;The final column "Address (R/W = 0)" shows the 8-bit address with the read/write (R/W) bit = 0 (i.e., a write operation). This is what is sent on the I²C bus.&lt;/P&gt;
&lt;P&gt;If the hardware configuration gives you a 7-bit address of 0x02 (binary 0000010), then:&lt;/P&gt;
&lt;P&gt;For a write, the 8-bit address on the bus is 0x04 (00000100).&lt;/P&gt;
&lt;P&gt;For a read, the 8-bit address on the bus is 0x05 (00000101).&lt;/P&gt;
&lt;P&gt;If your PCA9956B is configured with address 0x02 (AD2, AD1, AD0 = GND, GND, PD), then:&lt;/P&gt;
&lt;P&gt;Use 0x02 in your code as the I²C address.&lt;/P&gt;
&lt;P&gt;The I²C driver will automatically send 0x04 for writes and 0x05 for reads.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Harry&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 07:08:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-IDE/Address-pca9956btwy/m-p/2103248#M10382</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2025-05-23T07:08:18Z</dc:date>
    </item>
  </channel>
</rss>

