Category Archives: 3D Printing

Ring Switches

While pondering a “ring switch” I was reminded of another low-tech solution. Two screws placed close together. Metal ring across them will complete the circuit. (Disclaimer: Low Voltage Only! Keep it under 24VDC.)

Since I’m known for over-engineering, I made a quick 3D printed version to test it out. No soldering — screws hold pre-stripped wires in place. Threw in a magnet to attach it to anything ferrous/magnet friendly, or use double-faced foam. Since the end of the cord might droop, I modeled in a plug holder to take some strain.

Not the target solution, but a good early morning thought problem. 🙂

https://github.com/nelsonii/ring-switch-mountable

XBOX Adaptive Controller (XAC) with Custom Arduino Joystick — Working Code

At long last I’ve revisited my problem with getting the Arduino Leonardo / Pro Micro to work with the XBOX Adaptive Controller (XAC). This code now works with the XAC! Huzzah!

Important: Folks have been having issues with copy-and-paste. WordPress is sticking in formatting, and I can’t get it to upload an ICO, so head over to github for the code:

https://github.com/nelsonii/XBOX-Adaptive-Controller/tree/master

More to come. I’m working on a Nintendo JoyCon Joystick version for a user with limited mobility.

Feb 3, 2022 Update: The copy and paste of the code has been causing problems. Please head over to github for the code. Note: The fancier code, which handles weirdness with JoyCon replacement sticks, is also up there. Look for JoyConStick_Converter_ForXBOXAC_v2D.

https://github.com/nelsonii/XBOX-Adaptive-Controller/tree/master/JoyConStick_Converter_ForXBOXAC_v2D

AutoScope 2.0 : In Search Of Home

It’s so simple a problem that it’s a giant pain in the neck! To further automate the microscope, I need a way for the program to find a “home” position — a starting point. Something that won’t strip gears, crack slides, or otherwise cause mayhem.

Most X/Y/Z devices (3D printers, laser cutters, CNC routers, etc) use limit switches. The trouble is the way the microscope stage moves.

X – Moves just the slide left/right
Y – Moves the stage forward/back
Z – Moves the entire stage up/down

So, you either start attaching switches in weird places (on the stage, on the body) or come up with something else. Added fun? The top limit of Z should change depending on the objective lens. And, by the way, not the entire stage moves for Y — just the very top of it. But, Z does move everything. You start to see my problem.

How to cleanly find home, inexpensively, with as little modification to the microscope as possible?

I’ve looks at more sensors than I wish to admit:

Time of Flight (Laser) — Good for finding a single direction of movement, but I’d need three at $15 each. I tried some ideas of using just one for X and Y, but that didn’t pan out.

RGB Sensor Through Eyepiece — Find the “dark” / black and you determine the edges of the sample. Works fine, in a controlled (dark) environment, but reflected light (from the room light, bouncing off the top of the slide) messes with the readings.

Hall Effect Sensors — Like switches, but triggered by magnets. Most promising, but when Z is moved, their point of triggering changes. I pretty much need a constant/known distance between magnet and sensor.

Accelerometer / Magnetometer — AKA Gyroscope and Compass — Good for finding Yaw/Pitch/Roll, but since the microscope doesn’t Yaw/Pitch/Roll, not helpful for me. The stage movements are too small to accurately tell if its moving in a particular direction. Perhaps this is a solution, but I’ve not figured out how to tease out good data.

I was also thinking of a proximity sensor, like the one found on our Prusa 3D printer. Kinda like a Hall Effect without the magnets. But, the sensors aren’t cheap ($15-$30 each), pretty big, and I’d need three. And the whole range of motion problems and where to mount them.

This is the Y switch. You can see how part of the stage (toward top) moves, bottom part doesn’t.

So, for now, I’ve admitted defeat and gone back to micro switches. I’m hoping to get them working “good enough” so that I can write code. For now, the focus (ha-ha) is on X and Y. I’ll add Z later. (Z is less important, as the focus really needs a human eye, or smart AI.)

The X switch. Using a “finger” on the stage I printed. The program will find Y first, to move the stage closest to the user/switches. Then will look for X. Final program will lower to find Z, then Y, then X.

ESP8266 Digital Pocketwatch — And Network Sniffer

Pocket watch or network sniffer? Not sure. Both? A portable web server? I haven’t figured it out yet.

Using a recycled LiPo battery from an eCigarette. MakerFocus ESP8266 WiFi dev board with 0.91″ OLED display and charging circuit.

The 3D printer makes iterating though designs easier. A lot of unused parts, but we use them during classes to illustrate the progression of work — it’s not right the first time! Or the 5th!