Skip to main content

Project Z750 part 17

So, I now have all of the calipers dismantled and ready for cleaning and polishing.

I have been doing some searching on the web about cleaning carburetors (for the CB750) and found soda blasting. This is taking an air compressor, attaching an extra hose to a nozzle and using that hose to feed bicarbonate of soda through the nose similar to sand/bead blasting.

using bicarbonate of soda is supposed to be safe on delicate parts as it is a soft material. it's also water soluble so I can soak parts after blasting to get rid of any left over soda.

I have a small air compressor so I thought I'd give it a go and see if I can get the calipers clean using it.

I got some clear tubing and made a cut in it. then I fitted it over the end of the nozzle and used duct tape to try to seal the connection. The other end of the tube was put into a tub of baking soda, and I fired up the compressor. it took ages to pressurise the tank. I wanted to get it up to 100 psi, and it's only a little compressor. it seemed to take an age, but I guess it took around two minutes.

once it was up to pressure, I pointed the nozzle at the caliper and pressed the trigger. it was fun watching the soda fly up the tube and when it hit the caliper some of the gunk was blasted off. It was working. of course it didnt work for that long. the duct tape seal didn't hold for very long and as soon as it leaked, the soda wasn't being sucked up from the tub and I was just blasting air at the caliper.

Having proved that soda blasting could work, I tried to re-seal the nozzle/tube junction, and gave it another go. it worked for a while but started leaking again. well at least a little bit more dirt was gone.

So soda blasting will work, I just need to figure out how to connect the tube onto the nozzle and properly seal it.


Comments

Popular posts from this blog

Triathlon Training in the new year

So, my 2019 training has got off to a good start. I'm running regularly and my knees seem to be holding up. I've got a training plan to get me to a middle distance triathlon in September and I am managing the run distances I have set myself. I need to find some longer cycling routes to work and ones with a few hills too, but that shouldn't be a problem. my weekly cycling distance is okay, I just need to move to get my ebike to be doing less of the work. last week I did use my normal commuter bicycle and managed the whole four days as well as my runs, so that was a really good sign. Swimming won't be an issue, I have always found that to be the easy part of a triathlon (not that I'm fast, but I can keep going, and I did manage to swim the distance within the cut off time when I tried the ironman 70.3 last time) The main worry about going longer is my knees. I've got a 10K booked in late January which will test my knees out and I'm hoping that they hold ...

Creating a Watch Face for Android Wear OS 2

Step 1 - Setup my watch for development I have wanted to create a watch face for android wear for a while, but as no new watches were being released my old Moto 360 watch running wear os 1.0 got out of date and I stopped using it. For Christmas 2018 I got a new wear os watch running wear os 2.2 (android os 8.0.0). it has a round 400 x 400 screen and I decided to finally get round to creating myself a custom watch face for it. The first thing I do with all my android devices is to enable developer options. if you don't know how to do that then you can find the method using a google search. I won't give it hear as it opens up all sorts of options that could make android become slow/unusable. Once I had developer options enabled, I turned on USB debugging. This watch (as opposed to my old Moto 360) has a USB connection to the computer, so I don't have to use WiFi debugging (which has to be set up for each debugging session). now on to the watch face creation. St...

Windows Subsystem for Linux Internals

Background Windows Subsystem for Linux was developed by Microsoft to enable command line programs compiled for the Linux operating system to be executed on Windows. To explain the architecture I would like to show the evolution of OS design and how that has enabled this subsystem to be built. Dark Ages (or Back in the Day) Microsoft's MS-DOS was quite primitive in its design (compared to today's OS's). It is a single user OS that can execute one process at a time. DOS had an application programming interface to allow user programs to access some hardware in a device independent way, but only for character-based applications. This allowed applications to display graphical elements emulated with text characters as these screenshots of Microsoft word for DOS show: This is Microsoft Word version 1. To use these programs you had to remember key combinations to bring up the menus and used the cursor keys to navigate around the screen. If the a...