Sous Vide Timer?


 

Alex Mack

New member
Sous Vide Timer?... AND second slow cooker?

So far I am enjoying playing with the addon sous vide to the HM. It does really work well and stays within 0.5 degrees Celsius. I have made an awesome steak... Some veggies... And some eggs Benedict.

I am curious if there is a way to write a timer function?... Either to turn the fan function on or off at a desired time or after X amount of minutes...whatever works.

Yesterday, after I removed my eggs I never turned it off... Would have been good if it had some auto shutoff feature for dumb guys like me ☺️
----------
Also curious if there is a way to use another probe and other wires from the fan to control a second slow cooker. The one issue I have is with multiple temperature cooks like a rare steak and veggies at same time. If I could have two slow cookers going using one HM, that would be optimal.
 
Last edited:
You could set a pit high alarm script that would lower the pit set point after X amount of seconds, minutes or hours.

Code:
#!/bin/sh
#
# Sleep value must be in (s)econds, (m)inutes or (h)ours
#
SLEEP=8h
SETPOINT=50
#
# There's no need to edit anything below this line
#
# sleep and lower the setpoint
#
sleep $SLEEP && lmclient LMST,sp,$SETPOINT
 

 

Back
Top