File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 11import asyncio
22
3+ # Make pylibftdi scan the Hamilton HEPA Fan VID:PID
4+ # appears as ID 0856:ac11 B&B Electronics Model USOPTL4
5+ from pylibftdi import driver
6+
37from pylabrobot .io .ftdi import FTDI
48
59from .backend import FanBackend
610
11+ driver .USB_VID_LIST .append (0x0856 ) # i.e. 2134
12+ driver .USB_PID_LIST .append (0xAC11 ) # i.e. 44049
13+
714
815class HamiltonHepaFanBackend (FanBackend ):
916 """Backend for Hepa fan attachment on Hamilton Liquid Handler"""
Original file line number Diff line number Diff line change 66import time
77from typing import List , Optional , Union
88
9+ from pylibftdi import driver
10+
911from pylabrobot import utils
1012from pylabrobot .io .ftdi import FTDI
1113from pylabrobot .resources .plate import Plate
1921
2022logger = logging .getLogger ("pylabrobot" )
2123
24+ # Make pylibftdi scan the CLARIOstar VID:PID
25+ # appears as ID 0403:bb68 Future Technology Devices International Limited CLARIOstar
26+
27+ driver .USB_VID_LIST .append (0x0403 ) # i.e. 1027
28+ driver .USB_PID_LIST .append (0xBB68 ) # i.e. 47976
29+
2230
2331class CLARIOStarBackend (PlateReaderBackend ):
2432 """A plate reader backend for the Clario star. Note that this is not a complete implementation
You can’t perform that action at this time.
0 commit comments