<?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>CrowPanel ESP32 Display — ELECROW - FORUM</title>
        <link>https://forum.elecrow.com/index.php?p=/</link>
        <pubDate>Thu, 30 Apr 2026 04:36:36 +0000</pubDate>
        <language>en</language>
            <description>CrowPanel ESP32 Display — ELECROW - FORUM</description>
    <atom:link href="https://forum.elecrow.com/index.php?p=/discussions/tagged/crowpanel-esp32-display/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>how can i Design the UI in linux</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/1187/how-can-i-design-the-ui-in-linux</link>
        <pubDate>Mon, 07 Apr 2025 04:55:02 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>Nikkk</dc:creator>
        <guid isPermaLink="false">1187@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>i am facing many issuse in linux to make a Design for my Crowpanel 2.4 inch ESP32 HMI 240x320 SPI TFT LCD Touch Screen can some one guide me how can i use LVGL or Arduino in Linux</p>
]]>
        </description>
    </item>
    <item>
        <title>CrowPanel ESP32-C3 1.28 Round SPI Flash Libraries?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/1098/crowpanel-esp32-c3-1-28-round-spi-flash-libraries</link>
        <pubDate>Tue, 18 Feb 2025 04:36:35 +0000</pubDate>
        <category>ESP32 &amp; Lora</category>
        <dc:creator>bbroerman</dc:creator>
        <guid isPermaLink="false">1098@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I need to read/write data on the CrowPanel ESP32-C3 1.28 and the ESP32's Preferences library is not working (it's a known bug with ESP32-C3 apparently), but this CrowPanel comes with 16Mb of SPI flash. Does anyone know of the appropriate library to be able to use this?</p>
]]>
        </description>
    </item>
    <item>
        <title>DIS12824D : CrowPanel ESP32-C3 1.28 Round - Current / Power Usage</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/1074/dis12824d-crowpanel-esp32-c3-1-28-round-current-power-usage</link>
        <pubDate>Sat, 01 Feb 2025 01:27:50 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>bbroerman</dc:creator>
        <guid isPermaLink="false">1074@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi, I'm wondering if anyone has measured the current / power usage of the CrowPanel 1.28 Round with the ESP32-C3? Both active, and when the ESP, display driver, and touch controller are all in sleep mode and the backlight is off.   I have a similar panel (and have ordered this particular CrowPanel) and would like to compare...  I'm looking to calculate the effective run-time for different battery sizes.</p>

<p>The panel I have now runs at about 64mA when active and about 4.3mA when everything is in sleep mode. Is it about the same for this panel?</p>
]]>
        </description>
    </item>
    <item>
        <title>ES32-wroom 2.8 in display will not program again</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/880/es32-wroom-2-8-in-display-will-not-program-again</link>
        <pubDate>Sun, 06 Oct 2024 23:29:37 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>Marktecwiz</dc:creator>
        <guid isPermaLink="false">880@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I have several ESp32 2.8 in displays and two of them stopped programming with the error:</p>

<pre><code>Configuring flash size...
Flash will be erased from 0x00001000 to 0x00005fff...
Flash will be erased from 0x00008000 to 0x00008fff...
Flash will be erased from 0x0000e000 to 0x0000ffff...
Flash will be erased from 0x00010000 to 0x0004afff...
Compressed 18992 bytes to 13110...
A fatal error occurred: Packet content transfer stopped (received 8 bytes)
</code></pre>

<p>The problem is that GPIO 12 is connected to the touch screen<br />
When this pin is high it interferes with the flash voltage.<br />
I found this reference:<a href="https://www.esp32.com/viewtopic.php?t=27365" rel="nofollow">https://www.esp32.com/viewtopic.php?t=27365</a><br />
Bottom line you need to find the program espefuse.exe on you pc.<br />
Mine was ... \Arduino15\packages\esp32\tools\esptoolenv\Scripts<br />
First run espefuse.exe --help to make sure you can execute espefuse.exe.<br />
You should get all the parameters that the progam supprts.<br />
Then find out what port your dispslay is enumerating to (mine was Com6)<br />
Then run this command<br />
"espefuse.exe --port Com6 set_flash_voltage 3.3V"<br />
you should get</p>

<pre><code>Connecting...
Failed to get PID of a device on Com6, using standard reset sequence.
.
Detecting chip type... Unsupported detection protocol, switching and trying again...
Connecting...
Failed to get PID of a device on Com6, using standard reset sequence.
.
Detecting chip type... ESP32

=== Run "set_flash_voltage" command ===
Enable internal flash voltage regulator (VDD_SDIO) to 3.3V.

VDD_SDIO setting complete.

Check all blocks for burn...
idx, BLOCK_NAME,          Conclusion
[00] BLOCK0               is not empty
        (written ): 0x0000000401000000000008310000a00000c6b0b21cf9912000000000
        (to write): 0x00000000000000000001c00000000000000000000000000000000000
        (coding scheme = NONE)
.
This is an irreversible operation!
Type 'BURN' (all capitals) to continue.
</code></pre>

<p>You need to type "BURN" all caps then enter</p>

<pre><code>BURN BLOCK0  - OK (all write block bits are set)
Reading updated efuses...
Successful
</code></pre>

<p>I was then able to burn load new programs into all the displays that would not program with this error.</p>
]]>
        </description>
    </item>
    <item>
        <title>CrowPanel Display Tutorials</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/865/crowpanel-display-tutorials</link>
        <pubDate>Tue, 24 Sep 2024 10:22:33 +0000</pubDate>
        <category>Elecrow HMI Display</category>
        <dc:creator>pi61</dc:creator>
        <guid isPermaLink="false">865@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Does anyone know why CrowPanel ESP32 Screen Tutorials are no longer available on Youtube?<br />
www.youtube.com/playlist?list=PLwh4PlcPx2Ge-h-Pfsa7juFeWMgXmv8lc</p>
]]>
        </description>
    </item>
   </channel>
</rss>
