<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>#ESP32display — ELECROW - FORUM</title>
        <link>https://forum.elecrow.com/index.php?p=/</link>
        <pubDate>Tue, 28 Apr 2026 22:17:28 +0000</pubDate>
        <language>en</language>
            <description>#ESP32display — ELECROW - FORUM</description>
    <atom:link href="https://forum.elecrow.com/index.php?p=/discussions/tagged/esp32display/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Elecrow 5 inch esp32s3 upload issue</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/28219/elecrow-5-inch-esp32s3-upload-issue</link>
        <pubDate>Tue, 03 Mar 2026 06:34:14 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>ZK_66</dc:creator>
        <guid isPermaLink="false">28219@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>So, this is mostly informative for people like me you were too lazy to scroll all the way down the page and spent hours trying to figure out why I was unable to upload my code to the esp32s3 chip on the crowpanel 5 inch display. <br />
Because if you scroll about 3/4 of the way down the settings you need to upload to the esp32s3 are there under section 3, board settings. Once I change the settings in the arduino ide, it uploaded fine. You would think they would put it at the top of the page where it really needs to be, but no that would be too easy. Anyway, hopefully this helps someone.</p>
]]>
        </description>
    </item>
    <item>
        <title>ESP32 Display Update History</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/672/esp32-display-update-history</link>
        <pubDate>Sat, 17 Feb 2024 10:38:34 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>Elecrow</dc:creator>
        <guid isPermaLink="false">672@/index.php?p=/discussions</guid>
        <description><![CDATA[<h2>Here we record the changes to the esp32 displays</h2><p>📕<strong>Sept 2024</strong></p><p>The latest version of the 3.5-inch screen is version 2.2. The touch drive IC is different.</p><p>Version 2.0</p><p>TFT_MISO is pin 12;</p><p>Touch_CS is pin 33.</p><p><br /></p><p>Version 2.2:</p><p>TFT_MISO is pin 33;</p><p>Touch_CS is pin 12.</p><p>Therefore, the corresponding pin numbers need to be modified in the code, and the TFT_eSPI library also needs to be modified accordingly.</p><p>📕<strong>June 2024</strong></p><p>The latest version of the 5-inch and 7-inch screens is version 3.0, which adds the chip PCA9557 to increase timing control. Therefore, you need to add the PCA9557 library to make the touch work properly.</p><div>
    <div>
        <a href="https://forum.elecrow.com/uploads/204/ZFGZRVUL3DSD.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.elecrow.com/uploads/204/ZFGZRVUL3DSD.png" alt="image.png" />
        </a>
    </div>
</div>
<p>Video: <a href="https://www.youtube.com/watch?v=E3NAmstft_8&amp;list=PLwh4PlcPx2GcKJ17Z_xcAxQoh-Tmms_X1&amp;index=3" rel="nofollow">https://www.youtube.com/watch?v=E3NAmstft_8&amp;list=PLwh4PlcPx2GcKJ17Z_xcAxQoh-Tmms_X1&amp;index=3</a></p><p>Code: <a href="https://github.com/Elecrow-RD/CrowPanel-ESP32-Display-Course-File/tree/main/CrowPanel_ESP32_Tutorial/Code" rel="nofollow">https://github.com/Elecrow-RD/CrowPanel-ESP32-Display-Course-File/tree/main/CrowPanel_ESP32_Tutorial/Code</a></p><p>①Add the PCA9557 library:</p><pre spellcheck="false">#include &lt;PCA9557.h&gt;
</pre><p>②Define the PCA9557 object:</p><pre spellcheck="false">PCA9557 Out;
</pre><p>③Control with RESET and EN to meet the timing requirements:</p><pre spellcheck="false">Wire.begin(19, 20);
Out.reset();
Out.setMode(IO_OUTPUT);&nbsp;//Set to output mode
Out.setState(IO0, IO_LOW);
Out.setState(IO1, IO_LOW);
delay(20);
Out.setState(IO0, IO_HIGH);
delay(100);
Out.setMode(IO1, IO_INPUT);
</pre><p>📕<strong>March 2024</strong></p><p>Because &quot;SmartView&quot; has been registered by others, we now officially name the HMI series <strong>CrowPanel</strong></p><p>📙February 2024</p><p>1.Product Name change to <span style="text-decoration: line-through;">SmartView Display</span></p><p>2.Hardware changes:</p><ul><li><strong>Silkscreen</strong>: 1. From &quot;Wizee ESP32&quot; to &quot;ESP32 Display-xinch&quot;; 2.From &quot;WZxxx&quot; to &quot;DISxxx&quot;</li><li>All sizes of screens have added <strong>battery charging circuits</strong>. Connect the battery to the BAT interface and you can charge the battery through the USB-C interface.</li><li>There is no need to manually press the boot button to enter the burning mode for all screen sizes. After you click download in the compiler, <strong>the board will automatically enter the burn-in mode</strong>.</li><li>After the program download is completed, the program can be automatically run.</li><li>For 3.5-inch display, the chip is changed from ESP32-WROOM-32-N4 to <strong>ESP32-WROVER-B</strong>, <strong>PSRAM is changes to 8MB</strong></li><li>For 5.0, 7.0-inch display, there&#39;s<strong> I2C port</strong> added</li></ul><div>
    <div>
        <a href="https://forum.elecrow.com/uploads/497/B3N2YUYLC1ZY.png" rel="nofollow noopener" target="_blank">
            <img src="https://forum.elecrow.com/uploads/497/B3N2YUYLC1ZY.png" alt="企业微信截图_1706931058222.png" />
        </a>
    </div>
</div>
<p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>ESP32 7 inch display - how to connect sensor using i2c pin and also use touch with it</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/780/esp32-7-inch-display-how-to-connect-sensor-using-i2c-pin-and-also-use-touch-with-it</link>
        <pubDate>Mon, 24 Jun 2024 09:21:31 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>learnmore</dc:creator>
        <guid isPermaLink="false">780@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I want to connect an additional sensor for use, but currently it conflicts with the touchscreen. Is there a way to fix this?</p>
]]>
        </description>
    </item>
    <item>
        <title>CrowPanel 7&quot; Display DIS08070H will not compile Demo Lessons 4, 5 or 6</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/27953/crowpanel-7-display-dis08070h-will-not-compile-demo-lessons-4-5-or-6</link>
        <pubDate>Sun, 23 Nov 2025 17:01:12 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>rjp663</dc:creator>
        <guid isPermaLink="false">27953@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,<br />
I'm having difficulties compiling the demo lesson #6, CrowPanel_ESP32_LVGL_Demo. The truncated IDE error message is:</p>

<p>/Arduino/CrowPanel_ESP32_LVGL_Demo/CrowPanel_ESP32_LVGL_Demo.ino: In function 'void setup()':<br />
/CrowPanel_ESP32_LVGL_Demo.ino:95:7: error: 'class PCA9557' has no member named 'reset'<br />
   Out.reset();<br />
       ^~~~~<br />
CrowPanel_ESP32_LVGL_Demo.ino:96:7: error: 'class PCA9557' has no member named 'setMode'; did you mean 'pinMode'?<br />
   Out.setMode(IO_OUTPUT);</p>

<ul>
<li>additional compile errors pointing to PCA9557 -</li>
</ul>

<p>The Arduino IDE is setup with the following.<br />
Using board 'esp32s3' esp32/2.0.15<br />
Using core 'esp32' esp32/2.0.15<br />
LVGL 8.3.11<br />
TFT_eSPI 2.5.0<br />
Lovyangfx 1.1.8<br />
PCA9557-arduino 1.0.0<br />
SPI 2.0.0<br />
Wire 2.0.0</p>

<p>Using CrowPanel 7" display DIS08070H V3.0</p>

<p>Any help you could provide would be greatly appreciated.</p>
]]>
        </description>
    </item>
    <item>
        <title>CE/RED compliance confirmation for CrowPanel Advance 3.5″ &amp; 4.3″ (ESP32-S3) — UK use</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/27188/ce-red-compliance-confirmation-for-crowpanel-advance-3-5-4-3-esp32-s3-uk-use</link>
        <pubDate>Sun, 07 Sep 2025 14:18:38 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>BBMS</dc:creator>
        <guid isPermaLink="false">27188@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi Elecrow team,</p>

<p>I’m evaluating two CrowPanel Advance models for a handheld, battery-powered tool we are looking to develop for use in the UK:<br />
CrowPanel Advance 4.3″ HMI (ESP32-S3, 800×480)<br />
CrowPanel Advance 3.5″ HMI (ESP32-S3, 480×320)</p>

<p>Could you please confirm whether both of these units are covered by your EU CE / RED compliance and share the relevant documents? Specifically:</p>

<p>1) Declarations &amp; reports<br />
A copy of the EU Declaration of Conformity naming the exact model/SKU (3.5″ and 4.3″)<br />
List of applied standards (ideally these or equivalents):<br />
EN 300 328 (2.4 GHz radio)<br />
EN 301 489-1 &amp; EN 301 489-17 (EMC for radio equipment)<br />
EN 62368-1 (safety)<br />
EN 62311/EN 50663 (RF exposure/assessment)<br />
Any test reports (EMC/radio/safety) you can share or reference</p>

<p>2) Marking &amp; labelling<br />
Confirmation the products are CE-marked on the device and/or packaging, and shipped with the required EU/UK user information (manufacturer name/address, frequency band, max power, etc.)<br />
If available, UKCA info (understood that CE is recognised in GB)</p>

<p>3) Radio / antenna<br />
Is there a U.FL / external antenna option for either model, or a part number variant with an external antenna connector?<br />
Stated max conducted power / EIRP in 2.4 GHz band</p>

<p>4) Battery &amp; charging<br />
Rated charge current (default ISET), recommended adapter spec, and any guidance on supported cell capacity (e.g., 5 000 mAh ok; charge time considerations)<br />
Any protective features (OVP/OTP/short-circuit) and notes we should follow for enclosure thermal design</p>

<p>5) ESP-NOW<br />
Confirmation that the plug-in wireless module bay is not required and we only need the on-board ESP32-S3 for Wi-Fi/BLE/ESP-NOW</p>

<p>Usage context (for your reference):<br />
We’ll integrate the CrowPanel into a field tool (Building  commissioning). The final product will be enclosed in a metal housing (design considerations still required around on board ESP32-S3 antennae if no external connection option is available) with a battery pack; we’ll complete the end-product conformity assessment (EMC, safety, labelling) and maintain a technical file, but we’d like to include your DoC and test references for the display/HMI.</p>

<p>If you can attach the PDF DoC(s) for the 3.5″ and 4.3″ Advance models (or provide download links), that would be perfect.</p>

<p>Thank you</p>
]]>
        </description>
    </item>
    <item>
        <title>CrowPanel 5.0&quot;-HMI ESP32 Display 800x480 RGB TFT</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/27485/crowpanel-5-0-hmi-esp32-display-800x480-rgb-tft</link>
        <pubDate>Wed, 01 Oct 2025 13:14:34 +0000</pubDate>
        <category>ESP32 &amp; Lora</category>
        <dc:creator>Adam</dc:creator>
        <guid isPermaLink="false">27485@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>CrowPanel 5.0"-HMI ESP32 Display 800x480 RGB TFT<br />
Hello, I would like to purchase the above-mentioned panel, but I need information on which Lora module from your offer I need to buy and I would be interested in the connection diagram for the board.</p>
]]>
        </description>
    </item>
    <item>
        <title>Did my CrowPanel ESP32 2.9” E-paper HMI Display brick or am i stupid?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/27361/did-my-crowpanel-esp32-2-9-e-paper-hmi-display-brick-or-am-i-stupid</link>
        <pubDate>Sat, 20 Sep 2025 13:25:07 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>adiwtv</dc:creator>
        <guid isPermaLink="false">27361@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I'm fairly new to this.<br />
i just got my CrowPanel ESP32 2.9” E-paper HMI Display and i followed the instructions of installing/setting up arduino ide. When i connected the display using the provided cable, it booted up and output the default home/menu page with a red led lighting up at the back. As i was trying to upload custom sketches, the display would go to sleep(?) when kept idle and the red led would turn off.<br />
 The boot button wouldn't do anything but reset button would restart the display. Eventually the display stopped responding completely with led not turning on no matter what. <br />
I tried reconnecting it multiple times, windows recognises when its connected, arduino ide too, even when uploading a sketch, the output shows that the upload was successful with,<br />
'Wrote 364064 bytes (165195 compressed) at 0x00010000 in 2.7 seconds (effective 1084.1 kbit/s)...<br />
Hash of data verified.<br />
Leaving...<br />
Hard resetting via RTS pin...',<br />
but nothing happens at all. <br />
Am i doing something wrong or is it bricked?<br />
i am trying to get my hands on li-ion 3.7 battery hoping it might do something.</p>
]]>
        </description>
    </item>
    <item>
        <title>How to use GPIO or UART ports?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/716/how-to-use-gpio-or-uart-ports</link>
        <pubDate>Mon, 29 Apr 2024 20:56:56 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>AlpDmr</dc:creator>
        <guid isPermaLink="false">716@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello to everyone, I am newbie on Elecrow HMI Displays and I have a probably a simple (for you sure) question.<br />
Suppose I have any sensor/board that uses GPIO port or UART interface of an HMI display, can I use this sensor/board with only using Elecrow's ports over or do I need to use an extra device with microprocessor?<br />
If so, is there any tutorial/video/documentation about using Elecrow HMI Displays with hardware? Because nearly all tutorials are just about the design of HMI with SquareLine Studio and compile to Arduino IDE.</p>
]]>
        </description>
    </item>
    <item>
        <title>Bigger font than 48?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/26217/bigger-font-than-48</link>
        <pubDate>Mon, 25 Aug 2025 10:10:13 +0000</pubDate>
        <category>ESP32 &amp; Lora</category>
        <dc:creator>Freakarbeiter</dc:creator>
        <guid isPermaLink="false">26217@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello,<br />
I would like to have a larger font than the specified 48 in the sample programs. Can anyone generate this? I use arduino software.</p>
]]>
        </description>
    </item>
    <item>
        <title>Brightness of the display</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/2984/brightness-of-the-display</link>
        <pubDate>Thu, 29 May 2025 07:30:33 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>Harshit</dc:creator>
        <guid isPermaLink="false">2984@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I am planning to use ELECROW ESP32 display 7.0 Inch HMI Display 800×480 RGB TFT LCD Touch Screen Compatible with Arduino/LVGL/PlatformIO/ Micropython Without Acrylic Case. But I didn't get any info related to the brightness of the display.<br />
Can you tell the brightness of the display and also suggest some display in 7.0 Inch HDMI with 600+nits brightness if possible.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
