Hamilton HEPA Fan#
Summary |
Photo |
---|---|
- OEM Link (none exists?) |
Setup Instructions (Physical)#
The Hamilton HEPA Fan for a STAR or STARlet liquid handling workstation has to be placed on top of the machines chassis.
It requires two cable connections to be operational:
Power cord (standard IEC C13); if you are using an older HEPA Fan model ensure that the voltage switch is set to your country’s mains voltage!
USB cable (USB-B with at fan end; USB-A at control PC end)
Setup Instructions (Programmatic)#
from pylabrobot.only_fans import Fan
from pylabrobot.only_fans import HamiltonHepaFanBackend
fan = Fan(backend=HamiltonHepaFanBackend())
# NB.: fans are only machines, they are not modelled as resources -> require no str name
await fan.setup()
Usage / Machine Features#
Running for 60 seconds:
await fan.turn_on(intensity=100, duration=30)
Running until stop:
await fan.turn_on(intensity=100)
await fan.turn_off()