DIY: Vacuum and Temp Monitor Under $150

I wanted to get a quick writeup out there so at least the community has something to work off of while I still put together case and circuit designs. Using a list of basic off the shelf components:

  • AC-DC converter (or whatever gets you a steady 12v dc power source wherever you may be located) (~10$)
  • Adafruit feather huzzah esp8266 (~$15)
  • LM2596 dc-dc buck converter (~2$)
  • RS232 to TTL converter, MAX3232 (~5$)
  • LCM1602 LCD I2C (~$18)
  • Adafruit MAX31865 PT100 Amplifier (~12$)
  • PT100 Temperature sensor (~15$)
  • MKS 901p Vacuum transducer (~25-50$ used)
  • DB15 Female adapter w/terminals (~$10)

You too can put together a monitor that can:

  • Measure temperature from -50C to 250C
  • Measure vacuum/pressure from 1x10^-5 to 1500 torr
  • Easy to read lcd display
  • Easy and cheap to build/maintain; expandable in the future

Using the source code here and uploading via an arduino platform:
vac_temp_monitor.ino.txt (2.9 KB)

You should end up with a working setup like this:

I will follow up with wiring/circuit designs and case designs as soon as I can; busy time at work. Enjoy!

18 Likes

i quite like the thermocouple in the GL barb; thats clever!

2 Likes

Tbh, I havent ran it yet but I hope it holds, haha. I figured I may need to upgrade but this monitor will tell me once I can get a real pump on the system. Any temp probe should work, the hardware/software would just need to be tweaked.

1 Like

This is neat, Iā€™d love to see someone take a crack at opening up freeze drying using similar hardware

3 Likes

How big of a chamber are you thinking? And do you plan on stuffing it with biomass or would you want some type of rack system to separate layers? With some quick research I think I can do that give a little bit of time.

3 Likes

just tying these two togetherā€¦ similar but different.

Budget Digital Vacuum Sensor, read a 60$ pirani gauge through your PC

inspired by

1 Like
1 Like

Thanks, I was inspired by both of those posts. I also am looking to finish building my underlying framework for expanding device options for diy enthusiasts:

I think you can do almost the same thing with a nice cooler and dry ice alone. Layer dry ice and materials, close cooler, and let the dry ice sublimate.

Iā€™ve tried that setup before and itā€™s more for novelty, canā€™t do much volume at all with that setup.

Iā€™ve gotten real close to buying a harvest right, but canā€™t justify the cost for my personal hobby.

2 Likes

Iā€™m tempted to grab one for both food and hash purposes. Does the smell/taste carry over with mixed use?

The rack system seems key for a harvest right style unit, the trays are heated to allow sublimation from the material being freeze dried

I canā€™t personally say, but I imagine thereā€™s always that possibility, but a good scrub would probably help.

Right before the covid craze started, I was looking into em casually, but then checking their backlog after this shit started made me forget about it again.

For anyone using this, I had hoped to have time to build out the setup and case more but here is a set of stl files for the top and bottom 3d prints. When I can eventually optimize space and add ability to plug and play sensors or even add a simple mating mechanism between the two halves, Iā€™ll update these models. Prototype case is oversized but looks like this:

Happy to provide fusion 360 project files or other formats for anyone interested. For reference, top took my wanhao i3 about 12ish hours; bottom took about 4 hours. Lots of room to improve but like all projects, I needed it working yesterdayā€¦
Prototype_Case_Bottom.stl (8.9 KB) Prototype_Case_Top.stl (2.8 KB)

9 Likes

can you please upload a wiring diagram for your setup? thanks

2 Likes

Will need some time to go back and check the traces. In the meantime here is a schematic slightly different than the above that allows for the same end product without having to use modules. Should get you thinking about how to wire it up. Also, if you look at the arduino code, it should have the pinouts for the modules.

5 Likes

If there is enough interest, Iā€™m happy to do a run of these boards at slightly above cost to cover my time. LMK

6 Likes

Out of curiosity, are you reading the 901P analog output? I have a couple of them and tried to get the serial (RS-485) going, without success.

1 Like

Iā€™m connected using standard RS-232 but with a hardware translation for RS-485 I think it would work. I like the serial instead of the analog so I dont need to run a more precise adc and can run with less hardware. Shoot me a dm and I can help guide your specific setup.

If using an arduino like I am, and you already have the hardware setup to 2way convert TTL to RS-485 then its just as simple as setting up the software to send the required commands and do some serial string parsing:

image

Serial commands can be found in the specific model transducers manual. Hereā€™s the one for the transducer model I am using:
https://www.mksinst.com/mam/celum/celum_assets/resources/HPS901man-REVI.pdf

Starting on page 13, it starts to go into the ā€˜Communication Protocolā€™. That will tell you everything you need to know about sending/receiving data from the transducer. If you have the same one, you may be able to communicate via RS-485 as well as RS-232; maybe try RS-232 instead?

4 Likes

Awesome :clap::clap:

1 Like

My problem has been in the vein of ā€œframe shiftā€ errors. I can, for example, send the code that blinks the LED on the transducer, but when querying for a reading I get garbled strings back.
Iā€™m away from my setup, but will send some examples, and maybe between the two of us make some progress! Digital communications is definitely the way to go with these little guys! Iā€™d hate to have to dedicate a 16-bit (or 24?) A to D card to read these things.

2 Likes