Skip to main content

Changing a battery on a Fitbit Versa smartwatch

 My wife's beloved Fitbit Versa smartwatch decided to shutdown one day (before our holiday). The screen wouldn't turn on, and when charging, the device would get very hot. I left it to discharge and tried to charge it again, but it would get hot and the screen wouldn't start. The proximity sensor on the back would flash, but that's about it. The watch was 3-4 years old, so I knew the battery must have expanded and probably failed. Also, warranty was out, no chance of replacing it.


So, I did what I know best - I took it apart, to see if I could replace the battery (I'm not a fan of throwing something out just because a part failed, or it's old). I followed this tear-down guide, and using a razor blade to take out the screen is a must:


My variant was a bit different inside, so here is a picture guide:

https://imgur.com/a/mPtzhyf

You will need a trox 3 screwdriver to take out the 4 main screws, and a very small (don't know the size) Philips screwdriver to take out the 3 screws holding the battery. I was able to order a replacement battery and after a couple of weeks, I did the process in reverse, very careful not to break any ribbon cables. Let's just say that even if the battery fits, the battery cover wouldn't align perfectly, so only 2 screws out of 3 were used to secure it... Connecting back the ribbons was moderately difficult, because the PCBs wouldn't align perfectly, but in the end, it would connect.

https://imgur.com/a/xqifV3W

So, once everything was back together with care and attention - guess what? I heard a high pitched whining coming from the watch (I measured the frequency with an audio app and it had peaks at 7.5KHz, 9.9KHz, 12.4KHz, 14.9KHz, 17.4KHz and 19.9KHz). Also, it started to get hot once more, just like before replacing the battery.

So, in conclusion - the operation was a total success, but the patient is dead. Oh, well, at least I tried...

Comments

AnotherKoppler said…
mad_ady!
wdlxtv hardcore fan!

you didn't report in since 2 years, but I see you are still alive here! glad you are doing fine!

Greetings!

Popular posts from this blog

Home Assistant + Android TV = fun

Here's a quick setup guide for controlling your Android TV from within Home Assistant. I've used it to control a genuine Android TV (Philips 7304) and an Odroid N2 running Android TV. For this to work you need ADB access. It can usually be enabled from within Developer Settings. The great part is - you don't need root access! The most important things are described in the androidtv component for Home Assistant: https://www.home-assistant.io/integrations/androidtv/ Make sure you go through the adb setup. My configuration is simple (inside configuration.yaml): media_player:   - platform: androidtv     name: TV Bedroom ATV     host: 192.168.1.61     device_class: androidtv Once Home Assistant restarts, your TV might require you to accept the connection (adb authentication). This happens only once (or until you reset your ATV to factory settings). Once running the integration will show you the current ATV state (on or off) and al...

SmokePing + InfluxDB export + docker + slaves + Grafana = fun

I've been working for a while on this project - with the purpose of getting SmokePing measurements from different hosts (slaves) into InfluxDB so that we can better graph them with Grafana. The slaves run multiple Smokeping instances inside Docker so that they have separate networking (measure through different uplinks, independently). This will not be a comprehensive configuration guide, but a quick "how to" to handle setup and basic troubleshooting. It assumes you already know how to set up and operate a regular Smokeping install with or without slaves and that you are fluent in Smokeping configuration syntax, know your way around Docker and aren't a stranger from InfluxDB and Grafana (sorry, there's a lot of information to take in). 1. Getting Smokeping with InfluxDB support - you can get it either from the official page (most changes have been merged) - https://github.com/oetiker/SmokePing (PR discussion here: https://github.com/oetiker/SmokePing/issues/...

Android: Adding scp/sftp support to dropbear and mounting with sshfs

I have recently received an android smartphone, and one of the first things I did with it was to root it :). This allows power-usres to get the most out of their hardware. The next thing on my list was to set up a SSH server and to be able to transfer files between my Linux system and my phone (by the way, I'm running Android 4.1 and it seems USB mass storage support has been removed. MTP/PTP modes have either horrible transfer speed or are poorly supported in Ubuntu). With the above in mind, the plan was to: Enable tethering on the phone Run a SSH server to support issuing remote commands and file transfer (FTP might have been an alternative, but I'm a SSH adept). Browsing the market I found  SSHDroid which does all that it advertised. Problem is - the free version conflicts with my add-blocking apps and requests that they are disabled to run. For me, this is a big nuisance, so I kept looking. I found Dropbear SSH Server 2 , which is completely free, but doesn'...