Ir al contenido principal

Save 160$ on repairing nexus 5 shattered screen

Last month I dropped my precious Nexus 5 to the ground, with such bad luck that struck the corner, which is the Achilles heel of Gorilla Glass, and this was the result (Not actually my phone, but the same improvement)

After a few weeks taking it well, and as we are in summer, it began to release small fragments of broken glass. The problem is that is as unsightly as is dangerous.

So I decided to remove the rest of the screen. Using a dryer and a plastic card I removed the rest of the screen slowly. Caution! Do not use a cutter, you will end up grating the digitizer.

When it was completely removed, carefully, and applying heat, you can also remove the glue.

The problem was that my "nexus 5" was naked, and the screen would slip off the phone. Luckily for me the designer had left some embedded bolts in the frame.

That was when I got to work and designed the housing replacement. I first made it in plastic, but the sides of the screen are very narrow and broke. In the end I did it in metal.



The problem with metal is that I do not have tools to cut accurately, so here I settled for creating just two sheets. I've made them sanding with a sanding metal. The above must have 5 holes, two for the screws, speaker, camera, and sensors. The below just 3, for screws and led.

The biggest problem was to find the bolts, fortunately I found them in a harvested old digital camera, as a part of the lens assembly. I think these are M2, but I'm not sure.


The result is this. Not bad.


I've put a screen protector, and a small sticker around to prevent leakage of fluid in as far as possible.

At least I've saved to buy another phone, because I personally refuse to pay half of what it costs me again.

Comentarios

Entradas populares de este blog

Use rclone to mount cloud storage

I realized that the fat clients that allows you to sync your contents are not only wasting CPU cycles but also lots of disk space. Yes, that enables you to have the file opened almost instantly, no matter its size, but for me that use case is almost never needed, I use the cloud storage to save stuff that is in the range of a few MiB. Here is where rclone comes into play, it allows you to mount your storage as if it were a regular disk, and it handles the communication with the cloud servers on the go. As there are many different combinations I'll cover only two Linux w/ Dropbox curl https://rclone.org/install.sh | bash # Use rclone config to add a new remote called db for dropbox MAIN_USER=$SUDO_USER MAIN_USER_HOME=$(grep ^$SUDO_USER: /etc/passwd | head -1 | cut -d: -f6) mkdir /media/db chown $MAIN_USER:$MAIN_USER /media/db cat <<EOF > /lib/systemd/system/rclone-db.service [Unit] Description=Dropbox rclone mount After=multi-user.targetrclone [Service] Type=simple User=$ M...