element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum 3.5" LCD for Raspberry Pi - No Luck
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 6 replies
  • Answers 3 answers
  • Subscribers 663 subscribers
  • Views 4079 views
  • Users 0 members are here
  • lcd
  • gpio
  • raspberry_pi
  • raspberry pi
  • display
Related

3.5" LCD for Raspberry Pi - No Luck

aerosol
aerosol over 7 years ago

Hi all,

 

Fairly new to Raspberry Pi / Linux / Electronics. Recently purchased a Raspberry Pi 3 B and have been having great fun with it.

 

Purchased this 3.5" display and am having no luck getting it to work.

 

Once I fit it onto the GPIO, it displays all white - good, it’s getting power.

 

I run curl -L http://coreelec.io/2q | bash as per the product description page - it downloads, unzips, and runs the contents of the package.

 

I first attempted this on a RetroPie install - it did nothing, video was still coming through HDMI.

 

Next I tried on a Raspbian install - it disabled the HDMI, but the LCD still just displayed all white. I was able to restore HDMI video using the LCD_hdmi script as per the product description page.

 

Finally, I created a fresh NOOBS microSD, installed Raspbian Lite, ran the curl command - same as with the Raspbian install. It seems to do what it’s supposed to, then it reboots, doesn’t output to HDMI, and the LCD never changes from solid white.

 

It may be worth mentioning that the screen I received doesn’t look exactly the same as the one pictured on the Core Electronics shop - I don’t know if that makes any difference or not. The one I received is pictured here:

 

image

 

Any help/suggestions would be greatly appreciated.

  • Sign in to reply
  • Cancel
Parents
  • shabaz
    0 shabaz over 7 years ago

    There could have been an error during execution, did you examine the entire output after the software downloaded and ran? There may be a chance of that if there is a need to be a root user, or if the software is quite old (the display looks like it was designed in the time of earlier Pi models). The information Jon links should help, particularly the fbi/fbdev related detail at that location.

    One other thing that could be a high possibility, is lack of power (the Pi 3 with LCD will likely need the official Pi 3 power supply - not sure if you're using that or a different one).

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • aerosol
    0 aerosol over 7 years ago in reply to shabaz

    Once the script downloads and runs, it instantly reboots the rpi - and if I recall correctly there isn't much in the way of output as is. I'll be sure to keep a close eye on it next time though.
    I'm using the official Pi 3 power supply, so it shouldn't be a power issue.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • beacon_dave
    0 beacon_dave over 7 years ago in reply to aerosol

    You could take a look at the script you are running for clues...

     

    Starts with looking to see if the archive already exists and if not downloads 'LCD_show_v6_1_3.tar.gz', extracts it and then executes 'LCD35_v' which is probably another script that you could take a look inside at its contents. 

     

    #!/bin/bash
    # This script will download and install the necessary files to 
    # drive the 3.5" touch display.
    VERSION="v6_1_3"
    SOURCE="https://goo.gl/yZPq4p"
    cd ~
    # Check if drivers archive already exists
    file="./LCD_show_$VERSION.tar.gz"
    if [ -f "$file" ]
    then
        echo "$file found."
    else
        echo "$file not found - downloading"
        wget -O "LCD_show_$VERSION.tar.gz" $SOURCE
    fi
    # Check if archive is already extracted
    directory="./LCD_show_$VERSION/"
    if [ -d "$directory" ]
    then
        echo already extracted
    else
        echo extracting...
        tar -xvzf LCD_show_v6_1_3.tar.gz
    fi
    echo Beginning installation
    cd $directory
    ./LCD35_v

     

    It is downloading the files from kedei.net and if you look there

    http://kedei.net/raspberry/raspberry.html

    you find a bit more including a screen driver for RetroPie.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • aerosol
    0 aerosol over 7 years ago in reply to beacon_dave

    Kedei do have a screen driver for RetroPie - but it's not for the screen that I have. It's for one that connects via HDMI instead of SPI.

    In the end I managed to get everything working thanks to PiScreen Driver Install Instructions - ozzmaker.com  and https://www.raspberrypi.org/forums/viewtopic.php?t=178443

    Cheers everyone!




    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
Reply
  • aerosol
    0 aerosol over 7 years ago in reply to beacon_dave

    Kedei do have a screen driver for RetroPie - but it's not for the screen that I have. It's for one that connects via HDMI instead of SPI.

    In the end I managed to get everything working thanks to PiScreen Driver Install Instructions - ozzmaker.com  and https://www.raspberrypi.org/forums/viewtopic.php?t=178443

    Cheers everyone!




    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube