Motorized Correction Collar for Microscope Objective

6.6K3517

Intro: Motorized Correction Collar for Microscope Objective

In this instructable, you'll find a project involving an Arduino and 3D printing. I made it in order to control the correction collar of a microscope objective.

The goal of the project

Every project comes with a story, here it is: I am working on a confocal microscope and I am doing Fluorescence Correlation Spectroscopy measurements. But as this microscope is used with biological samples, some measurements have to be done at specific temperatures. So an opaque thermostated chamber has been made to keep the temperature stable. However, the objectives are no more accessible... And it is quite difficult to change the correction collar value of the objective.

Parts needed:

  • An Arduino board. I have used an Arduino nano because it is smaller.
  • A servomotor. I have used an SG90.
  • A 10kOhm potentiometer.
  • 3D printed pieces.

The steps:

  1. The objective: overview
  2. The objective: all the parts
  3. The objective: the gear teeth
  4. The objective: how to attach the gear?
  5. The controller: overview
  6. The controller: all the parts
  7. The controller: the Arduino circuit and code
  8. Conclusion & files

Before to start:

I have based this work on three different references:

  • Concerning the technique: here is an article where the author was facing similar issues and developed a motorized objective. I have downloaded some parts he designed (the motor holder) and redesigned them to fit the objective.
  • Concerning the Arduino holder: I have used this piece, I have downloaded it on Thingiverse and I have redesigned it.
  • Concerning the code: I have used the same code proposed in the Arduino tutorial to control a servo-motor with a potentiometer. And I have modified it to fit perfectly with the gauge values.

And I have reshaped and modified all of these previous projects into one single project with new features:

  • I have made easier attaches to fix the gears to the objective
  • I have used gears with bigger teeth
  • I have built a small gauge to change the values of the correction collar
  • And I have made a small box to hold the Arduino board and the potentiometer

I also wanted this project to look like it is finished, but using no glue and no soldering, so the circuit can be fully reused easily. Therefore I have used jumper wires for the electronic connections, and M3 screws and nuts to attach the plastic parts together.

STEP 1: The Objective: Overview

Here is just an image of the objective I am using, and the servomotor attached.

STEP 2: The Objective: All the Parts

After the article Easy Exploded 3D Drawings of JON-A-TRON, I could not resist making my own gif and drawings.

Below you can see how the pieces are connected:

And on the image below the drawing with the nomenclature.

As you can see, the motor support was inspired and modified from this article . However, I have changed the way to attach it to the objective, and the gears module.

Also, note that the "servomotor cross" and the "motorized gear" are just assembled together without a screw.

STEP 3: The Objective: the Gear Teeth

As you can see on the right of this picture, the original teeth of the objective gear were really small. I have tried to 3D print a gear with the same module, but of course, it does not work well... So I have made a ring gear to place on the gear of the objective. The inner part of the ring has small teeth to grip to the objective gear, while the outer part has bigger teeth.

STEP 4: The Objective: How to Attach the Gear?

To attach the ring gear and the motor support to the objective, I have used a system similar to a hose clamp, with M3 screws and nuts. This way, the parts are strongly attached to the objective.

STEP 5: The Controller: Overview

Here is the second part of the project: the controller. It is basically a plastic box containing the Arduino board, the potentiometer, and a gauge to choose the correct value of the correction collar.

Note that nothing has been glued, or soldered.

STEP 6: The Controller: All the Parts

Again, below you can see how the parts are assembled.

On the image below, you can see that the M3 screws and nuts are used to hold the potentiometer, and close the box (attach the lower and upper parts of the box). And the M6 screws are used to fix the box on the optical table where the microscope stands.

The "gauge" part is the only piece that has been glued (to attach it to the "plastic box"), and I have used cyanoacrylate glue.

STEP 7: The Controller: the Arduino Circuit and Code

Here is the code used to control the servomotor. It basically relates the potentiometer to the motor according to its values. You can find the code here.There is no need to write it if it already exists, however, it is important to understand how it works.

In this case, I have calibrated the device, so when the arrow is pointing at a value, the collar of the objective has the same value.

The line you might have to modify is the following.

val = map(val, 0, 1023, 0, 180);

The numbers "0, 1023" are related to the potentiometer values, while the numbers "0, 180" are related to the steps of the servomotor. To perfectly calibrate the device, I have changed these values until I was satisfied.

STEP 8: Conclusion & Files

This is an easy project, but still quite interesting as it involves 3D printing and Arduino. Plus, it is very useful because we can control the correction collar of the objective without buying a new motorized objective (which can be quite expensive).

Thanks for reading! Feel free to comment if you have any suggestion!

14 Comments

Nice idea. Do you sell this printed and assembled? Do you plan on posting your results with your confocal setup? I'm slowly refurbishing a Leica DM IRBE. Unfortunately the lasers are toast.
Thank you for your comment. No sorry, I don't sell them, and I don't work with this anymore. But I know people that contacted me and are currently working with this, so I can send you their email addresses if you want to contact them about their confocal setup. Let me know with private message.
Hi,
You could try to decrease the inner diameter of both pieces placing a zip tie between the pieces and the objective (see attached photo). The zip tie I used is a little too thin, but with a larger one, it should work fine.
Let me know if it works!

Little heads up, you could have used a 555 Timer to do the same job the Arduino does, it's cheaper but it might require some soldering :/ . Great Instructable nontheless !!!

Thanks! Unfortunately, I have no idea about how to use a 555 timer... Any idea where I could learn, with easy projects?

Great project and beautiful gifs! What is the correction collar used for? Is it adjusted based on the sample properties? What do the values 0.17 - 0.19 represent?

Thanks! The correction collar is mainly used to correct the spherical aberration due to the cover glass thickness. In fact, 0.17 - 0.19 correspond to the thickness of the cover glass in mm (0.17 is 170 micrometers thick and 0.19 is 190 micrometers thick). So if you want to use a 170 micrometers thick cover glass, you will set the correction collar to 0.17.

But you are also right, it can be adjusted according to the sample properties, more specifically its refractive index. Finally, the correction collar can be adjusted according to the temperature as it can also change the index.

Thanks for your explanation. Very clear. I was wondering if there was a way to adjust the collar automatically for any imaging condition based on some feedback you got from the images acquired. Based on what you said, that would probably take a lot of work and would not be worth it. Thanks for making this device open-source. I bet it will be useful for many microscopists.

Best of luck with the confocal imaging!

Yes, that would be awesome to have an auto-correction of the correction collar according to the image displayed. But I think it could not be done with an Arduino as there would be image processing. And it would take a lot of time (for me) to make.

But who knows, maybe it is going to be my next project?

I see the challenge with doing real-time image processing for that project. You would definitely need some other controller. I am interested to see the next project, regardless of what it may be!

Very nice and comfortable

Thank you! But what do you mean by comfortable?

Nice drawings / animations! Glad the instructable was useful.