<?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>#Raspberrypi — ELECROW - FORUM</title>
        <link>https://forum.elecrow.com/index.php?p=/</link>
        <pubDate>Wed, 29 Apr 2026 07:39:00 +0000</pubDate>
        <language>en</language>
            <description>#Raspberrypi — ELECROW - FORUM</description>
    <atom:link href="https://forum.elecrow.com/index.php?p=/discussions/tagged/raspberrypi/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>How to replace/disable Elecrow splash screen on CrowPanel CM4?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/28267/how-to-replace-disable-elecrow-splash-screen-on-crowpanel-cm4</link>
        <pubDate>Fri, 20 Mar 2026 22:24:08 +0000</pubDate>
        <category>TFT-LCD &amp; Touch Screen</category>
        <dc:creator>jcz0824</dc:creator>
        <guid isPermaLink="false">28267@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>How do you disable/replace the elecrow logo splash screen on the CrowPanel CM4 ? I would like to replace this image with a custom graphic. Thank you</p>
]]>
        </description>
    </item>
    <item>
        <title>For Hackberry PI, which Raspberry PI CM5 model?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/28232/for-hackberry-pi-which-raspberry-pi-cm5-model</link>
        <pubDate>Sun, 08 Mar 2026 17:28:08 +0000</pubDate>
        <category>Elecrow support</category>
        <dc:creator>planodad</dc:creator>
        <guid isPermaLink="false">28232@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>Is there a specific model you recommend?  I know you’ve said CM5 Lite, but is that model SC1560?</p>

<p>Thanks,</p>
]]>
        </description>
    </item>
    <item>
        <title>Can the nvme and Lorawan co exist on new pi terminal</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/878/can-the-nvme-and-lorawan-co-exist-on-new-pi-terminal</link>
        <pubDate>Fri, 04 Oct 2024 12:48:37 +0000</pubDate>
        <category>General Discussion</category>
        <dc:creator>kdodds98</dc:creator>
        <guid isPermaLink="false">878@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Can you get an adapter which allows the Lora module and the nvme ssd to work together on the new pi terminal touch screen</p>
]]>
        </description>
    </item>
    <item>
        <title>How to Use Pico to Make Electronic hourglass --- RaspberryPiPico Kit</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/309/how-to-use-pico-to-make-electronic-hourglass-raspberrypipico-kit</link>
        <pubDate>Thu, 01 Sep 2022 02:42:28 +0000</pubDate>
        <category>Projects</category>
        <dc:creator>Elecrow</dc:creator>
        <guid isPermaLink="false">309@/index.php?p=/discussions</guid>
        <description><![CDATA[<h2><span style="color: blue;">Project Introduction:</span></h2>
Turn the encoder to set the time, and it will be displayed on the TM1637 4-Bits digital tube in real time. Press the button and the electronic hourglass starts working.
<img src="https://forum.elecrow.com/uploads/editor/jq/5d7723was788.png" alt="" />

<h2><span style="color: blue;">Material preparation: </span></h2>
Raspberry Pi Pico*1, USB Cable*1, Breadboard*1, Encoder*1, TM1637 4-Bits Digital Tube*1, Dupont line

<h2><span style="color: blue;">Circuit connection:</span></h2>
<img src="https://forum.elecrow.com/uploads/editor/gw/zz1u69adshdv.png" alt="" />
<img src="https://forum.elecrow.com/uploads/editor/tz/m5rnzbm3zkj8.png" alt="" />

<h2><span style="color: blue;">Library file installation:</span></h2>
Upload the "tm1637.py" library file to the Raspberry Pi Pico. 
<b>Step1:</b> Download tm1637.zip, unzip the file and copy tm1637.py to library folder.
<b>Step2:</b> Connect the Pico to Thonny with a USB cable;
<b>Step3:</b> Find the "tm1637.py" library in the file window;
<b>Step4:</b> Right-click and select "Upload to / " to start uploading the library file;
<b>Step5:</b> "tm1637.py" appears at bottom left, indicating that the upload is successful, and you can start running the program.

<h2><span style="color: blue;">Program analysis: Electronic Hourglass</span></h2>
<code>
from machine import Pin
from time import sleep
import tm1637

tm = tm1637.TM1637(clk=Pin(4), dio=Pin(5))
RoA_Pin = 0               # CLK
RoB_Pin = 1               # DT
Btn_Pin = 2                # SW

globalCounter = 0          # counter value
flag = 0                   # Whether the rotation flag occurs
Last_RoB_Status = 0       # DT state
Current_RoB_Status = 0    # CLK state

def setup():
    global clk_RoA
    global dt_RoB
    global sw_BtN
    
    clk_RoA =  Pin(RoA_Pin,Pin.IN)           
    dt_RoB = Pin(RoB_Pin,Pin.IN)              
    sw_BtN = Pin(Btn_Pin,Pin.IN, Pin.PULL_UP) 
    # Initialize the interrupt function, when the SW pin is 0, the interrupt is enabled
    sw_BtN.irq(trigger=Pin.IRQ_FALLING,handler=btnISR)

# Rotation code direction bit judgment function
def rotaryDeal():
    global flag                   
    global Last_RoB_Status
    global Current_RoB_Status
    global globalCounter         

    Last_RoB_Status = dt_RoB.value()   
    # Judging the level change of the CLK pin to distinguish the direction
    while(not clk_RoA.value()):       
        Current_RoB_Status = dt_RoB.value() 
        flag = 1                    # Rotation mark occurs
    if flag == 1:                     # The flag bit is 1 and a rotation has occurred
        flag = 0                     # Reset flag bit
        if (Last_RoB_Status == 0) and (Current_RoB_Status == 1):
            globalCounter = globalCounter + 1    # counterclockwise, positive
        if (Last_RoB_Status == 1) and (Current_RoB_Status == 0):
            globalCounter = globalCounter - 1     # Clockwise, negative

# Interrupt function, when the SW pin is 0, the interrupt is enabled
def btnISR(chn):
    global globalCounter
    globalCounter = 0 
    print ('globalCounter = %d' %globalCounter)
    while True:
    # Define a counter that changes every 1 second
        tm.number(globalCounter)
        globalCounter = globalCounter - 1
        sleep(1)
        if globalCounter == 0:
            break

def loop():
    global globalCounter  
    tmp = 0   
    while True:
        rotaryDeal()      
        if etmp != globalCounter:
            print ('globalCounter = %d' % globalCounter)
            tmp = globalCounter    
            tm.number(globalCounter)
            
if __name__ == '__main__':    
    setup() 
    loop()  </code>
<h2><span style="color: blue;">Click link below to watch video:</span></h2>
<span style="color: blue;"><a rel="nofollow" href="https://www.youtube.com/watch?v=Sl1dVGrHXFg">https://www.youtube.com/watch?v=Sl1dVGrHXFg</a></span>]]>
        </description>
    </item>
    <item>
        <title>Connecting a MAX4466</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/1064/connecting-a-max4466</link>
        <pubDate>Fri, 24 Jan 2025 16:42:51 +0000</pubDate>
        <category>Projects</category>
        <dc:creator>pgrooff</dc:creator>
        <guid isPermaLink="false">1064@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I have a Raspberry Pi starters kit and connected the PCF8591 module (lesson 15) and (I think) it works.<br />
The pot meter is on 1 and the light is on 2.<br />
Now I want to connect the MAX4466, a microphone module, to the raspberry pi - to input 1 of the PCF8591 (I removed the jumper).<br />
I use the software from lesson 15, but nothing happens. I see no change when speak into the microphone.<br />
What am I doing wrong, any suggestions?</p>
]]>
        </description>
    </item>
    <item>
        <title>CRV00117L - CrowVision 7 inch LCD tactile touch is not working [Solved]</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/1013/crv00117l-crowvision-7-inch-lcd-tactile-touch-is-not-working-solved</link>
        <pubDate>Tue, 17 Dec 2024 16:57:54 +0000</pubDate>
        <category>TFT-LCD &amp; Touch Screen</category>
        <dc:creator>asis</dc:creator>
        <guid isPermaLink="false">1013@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hello, I have just receive a CrowVision 7 Inch Touch Screen Capacitive Portable 1024*600 IPS LCD Monitor Rear Fixing for Raspberry Pi but works with a Raspberry Pi 3B from 2015. The problem is the tactile is not working. In my Pi there is not a USB-C for the tactila so, I put a mini usb cable but.... tactile is not working</p>
]]>
        </description>
    </item>
    <item>
        <title>CrowPi-L 64bit image</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/444/crowpi-l-64bit-image</link>
        <pubDate>Mon, 12 Jun 2023 06:40:51 +0000</pubDate>
        <category>Raspberry Pi &amp; CrowPi</category>
        <dc:creator>Elecrow</dc:creator>
        <guid isPermaLink="false">444@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Great news! The 64-bit image for the CrowPi L learning platform is now available for download.</p><p>And here&#39;s the download link:</p><div data-embedjson="{&quot;body&quot;:&quot;&quot;,&quot;url&quot;:&quot;https:\/\/drive.google.com\/drive\/folders\/1htg37I2d91N6qGHDWVHaB5AXTnOuXJd8?usp=sharing&quot;,&quot;embedType&quot;:&quot;link&quot;,&quot;name&quot;:&quot;CrowPi_L_image_64bit_v1 - Google Drive&quot;}">
    <a rel="nofollow" href="https://drive.google.com/drive/folders/1htg37I2d91N6qGHDWVHaB5AXTnOuXJd8?usp=sharing">
        https://drive.google.com/drive/folders/1htg37I2d91N6qGHDWVHaB5AXTnOuXJd8?usp=sharing
    </a>
</div><p><br /></p>]]>
        </description>
    </item>
    <item>
        <title>New Raspberry Pi OS: Bookworm</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/543/new-raspberry-pi-os-bookworm</link>
        <pubDate>Thu, 12 Oct 2023 04:11:01 +0000</pubDate>
        <category>Products &amp; Technology</category>
        <dc:creator>SpareSimian</dc:creator>
        <guid isPermaLink="false">543@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Has anyone attempted to run Bookworm on the Crowpi2? I&#39;m running Bullseye x64 on mine without issue, after adding the needed HDMI config to the boot config file. Is anything else needed to make Bookworm work? </p><p>Details about the new OS: <a href="https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/" rel="nofollow">https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/</a></p>]]>
        </description>
    </item>
    <item>
        <title>Where I can download the CrowPi image compatible with Raspberry Pi5?</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/756/where-i-can-download-the-crowpi-image-compatible-with-raspberry-pi5</link>
        <pubDate>Wed, 12 Jun 2024 04:31:51 +0000</pubDate>
        <category>Raspberry Pi &amp; CrowPi</category>
        <dc:creator>Elecrow</dc:creator>
        <guid isPermaLink="false">756@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><strong>2024-5-9 Updated download link:</strong> <a rel="nofollow" href="https://drive.google.com/drive/u/0/folders/1omz8i4UVU-chItRekNViZEYqbhsLtCnn" title="https://drive.google.com/drive/u/0/folders/1omz8i4UVU-chItRekNViZEYqbhsLtCnn">https://drive.google.com/drive/u/0/folders/1omz8i4UVU-chItRekNViZEYqbhsLtCnn</a><br />
<img src="https://forum.elecrow.com/uploads/editor/95/dtn220gin49p.png" alt="" title="" /></p>

<h2>How to flash the image to the SD card?</h2>

<p><strong>Step1:</strong>  Insert the SD card into your computer. Use <a rel="nofollow" href="https://www.sdcard.org/downloads/formatter/" title="sd formatter">sd formatter</a> to format your SD card.</p>

<p><strong>Step2:</strong> Use the image burning tool to burn the image file to your SD card.</p>

<p>For the image burning tool, you can choose <a rel="nofollow" href="https://etcher.balena.io/" title="balenaEtcher">balenaEtcher</a>, <a rel="nofollow" href="https://win32diskimager.org/" title="Win32DiskImager">Win32DiskImager</a> or <a rel="nofollow" href="https://www.raspberrypi.com/software/" title="Raspberry Pi Imager">Raspberry Pi Imager</a>.<br />
Take Raspberry Pi Imager as an example, select use custom in os, select the image file you just downloaded, and then select your SD card. Click next and confirm.<br />
<img src="https://forum.elecrow.com/uploads/editor/ga/qkp06f82pwsa.png" alt="" title="" /><br />
<img src="https://forum.elecrow.com/uploads/editor/5o/esvr1lddmc2z.png" alt="" title="" /><br />
<img src="https://forum.elecrow.com/uploads/editor/31/i8elsz9gj88k.png" alt="" title="" /><br />
<img src="https://forum.elecrow.com/uploads/editor/q3/i4k6l216x4hx.png" alt="" title="" /></p>

<p><strong>Step3:</strong> After the image is burned to the SD card, insert the SD card to Raspberry Pi5 and turn on CrowPi. You will see there's a folder name "CrowPi" on the Desktop.<br />
<img src="https://forum.elecrow.com/uploads/editor/7k/xwlbs6kn704d.png" alt="" title="" /></p>

<p><strong>Step4:</strong> Run <code>cd Desktop/CrowPi/Examples</code> to enter the course folder , and then run <code>sudo python buzzer.py</code> (or other programs) to run the course code.</p>
]]>
        </description>
    </item>
    <item>
        <title>CrowPi1 FAQs</title>
        <link>https://forum.elecrow.com/index.php?p=/discussion/104/crowpi1-faqs</link>
        <pubDate>Sat, 17 Apr 2021 08:50:00 +0000</pubDate>
        <category>Raspberry Pi &amp; CrowPi</category>
        <dc:creator>tony</dc:creator>
        <guid isPermaLink="false">104@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><strong>Image problems</strong></p><p>1.<a href="https://forum.elecrow.com/discussion/101/where-can-i-download-the-crowpi1-latest-image#latest" rel="nofollow">Where can I download the CrowPi1 latest image?</a></p><p>2.<a href="https://forum.elecrow.com/discussion/267/image-for-crowpi-compatible-with-8g-raspberry-pi-4b/p1?new=1" rel="nofollow">Where can I download image for Crowpi which compatible with 8G respberry pi 4B?</a></p><p>3.<a href="https://forum.elecrow.com/discussion/756/where-i-can-download-the-crowpi-image-compatible-with-raspberry-pi5/p1?new=1" rel="nofollow">Where I can download the CrowPi image compatible with Raspberry Pi5?</a></p><p><br /></p><p><strong>Lessons problems</strong></p><p>1.<a href="https://forum.elecrow.com/discussion/100/where-can-i-download-the-crowpi1-lessons#latest" rel="nofollow">Where can I download the CrowPi1 lessons?</a></p><p><br /></p><p><strong>Software problems</strong></p><p>1.<a href="https://forum.elecrow.com/discussion/103/how-to-install-all-the-dependency-packages-needed-by-the-crowpi1-image-base-on-standard-rasberryos#latest" rel="nofollow">How to install all the dependency packages needed by the CrowPi1 image base on standard RasberryOS?</a></p><p>2.<a href="https://forum.elecrow.com/discussion/373/how-to-set-crowpi-lock-screen/p1?new=1" rel="nofollow">How To Set CrowPi Lock Screen</a></p><p>3.<a href="https://forum.elecrow.com/discussion/423/install-the-gparted-tool-to-resize-the-crowpi-partition/" rel="nofollow">Install the GParted tool to resize the CrowPi partition</a></p><p>4.<a href="https://forum.elecrow.com/discussion/1040/crowpi-when-i-try-to-update-any-apps-it-would-say-it-does-not-have-enough-storage" rel="nofollow">When you try to update any apps, it would say it does not have enough storage. </a></p><p><br /></p><p><strong>Hardware problems</strong></p><p>1.<a href="https://forum.elecrow.com/discussion/102/how-can-i-know-all-the-information-of-crowpi1-on-board-modules#latest" rel="nofollow">How can I know all the information of CrowPi1 on-board modules?</a></p><p>2.<a href="https://forum.elecrow.com/discussion/297/how-to-disassembly-the-crowpi#latest" rel="nofollow">How to disassembly the CrowPi?</a></p><p>3.<a href="https://forum.elecrow.com/discussion/367/is-crowpi-compatible-with-raspberry-pi-4#latest" rel="nofollow">Is CrowPi compatible with Raspberry Pi 4?</a></p>]]>
        </description>
    </item>
   </channel>
</rss>
