Skip to main content

Car Mirror Anti-Fog Film From Hell

Wife bought a set of anti-fog film for her car and asked me to help her apply them to the side mirrors. Turned out to be a really bad idea.

Firstly, it is difficult to get good clean results. If you have ever tried to apply film-based screen protectors for your smartphones or tablets, you know what I mean. You invariably get smudges or bubbles under the film, and the result does not look quite as nice as what they show in the photos. Furthermore, you are doing this outdoors, where dust is floating everywhere and invariably get caught under the film.

Secondly, and that's the most annoying part about this product, these things stick like crazy! Once they are on, they are impossible to pry off the mirror! I got a fright when I realized the little piece of cardboard that was provided did not make the film budge. Tried a credit card, and that didn't work either. Tried hair dryer on high mode, nothing. At that point, I was extremely frustrated! What kind of product-from-hell was this?

I googled frantically for a solution, and could not find anything that specifically mentioned how to get this product *off* (there were quite a few that showed you how to put it on though). A more generic search about how to get adhesives off mirrors suggested I could try a heat gun or a steam cleaner. It was the latter that I have at home, and that worked, but not without a lot of effort!
I had to blast the steam cleaner at one corner of the film, then immediately try to pry that corner off the mirror. It took a few tries before that corner would lift, and once that happened, it was possible to peel the entire film off the mirror.

In the end, I told my wife, no more sticky-film-from-hell for her car. I applied a spray of EnduroShield that I picked up from Aldi for $10, all in under 3 minutes.
Yes, it wears off after a few months, but it's quick to re-apply, AND easy to remove!

Comments

Popular posts from this blog

Hacking an analog clock to sync with NTP - Part 5

This is how it looks after I have put everything together. The Arduino sketch is available here . The 2 jumper wires soldered to the clock mechanism are connected to pins D0 and D1 on the ESP-12 (in any order). When the device first boots up, it presents an access point which can be connected to via the PC or smartphone. Once connected, the captive portal redirects the web browser to the configuration page:     A custom field has been added to the WiFi configuration page to enter the current clock time in HHMMSS format. Try to set the clock time to as close to the current time as possible using the radial dial at the back of the clock so the clock will have less work to do catching up. In the config page, the HTML5 Geolocation API is also used to obtain your current location (so if your web browser asks if you would like to share your location, answer "yes"). This is then passed to the Google Time Zone API to obtain the time and DST offset of your time z...

Cooling mod for the X96 Air

I realized after my Ugoos box died that overheating is a big problem with cheap Android TV boxes. A teardown of the Ugoos box shows that it does not have any heatsink or fan at all!  The X96 Air does have a heatsink, but the heatsink is located at the bottom of the casing with no ventilation. In this default configuration, with the ambient room temperature at 25c and playing a 1080p video, I was seeing the CPU temperature at 67c. I drilled a couple of holes at the bottom of the casing. The CPU temperature fell to 59c with the box raised about 2cm with plastic blocks. I retrieved an old 5V laptop fan: Then cut and strip away a spare USB cable: Solder the red and black wires on the fan and the cable: Secure the fan to the bottom of the casing with double-sided tape, then plug the fan into the box's USB connector. Here's a view of the box with some 3D-printed risers installed at the bottom to give the mounted fan sufficient clearance: The CPU now runs at 43c, a huge drop from the ...

Cooling mod for the X96 Air #2

Previously, I added a USB cooling fan to the X96 Air TV box . The problem with this mod is that the fan is always running, and it runs at full speed. Ideally, the fan should kick in only when the CPU temperature is above a certain threshold. It would be even better if there is a way to control the fan speed. Dan McDonald left me a comment pointing to his project on Github . He basically connected the fan to a USB relay that can be controlled by Python script. His project inspired me to make a similar mod that would make use of the spare D1 Mini boards I have lying around. The plan is to hook up the fan to a MOSFET (2N7000) and control it via PWM. Here's the very simple circuit: The code simply reads a single character from the serial port (0 - 9). 0 will turn the fan off, while 1 - 9 will generate a proportional PWM to drive the fan, with 1 being the lowest and 9 being the highest. Here's the Arduino code: #include <Arduino.h> void setup () { Serial . begin ( 9600 ...