Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a3d794d9a1 | |||
| 197a3a6f05 | |||
| ae2f8e7e70 | |||
| a13dde3055 |
@@ -0,0 +1,7 @@
|
||||
.DS_Store
|
||||
*.cpython-37.opt-2.pyc
|
||||
*.pyc
|
||||
*/__pycache__
|
||||
/.vscode
|
||||
/media
|
||||
python/biopro/sever/_identify.py
|
||||
@@ -575,6 +575,11 @@ class DeviceManager(MasterDevice, Synchronized):
|
||||
if slave.device_id == device:
|
||||
return slave
|
||||
|
||||
elif isinstance(device, str):
|
||||
for slave in self._device:
|
||||
if ':'.join(format(b, 'x') for b in slave.mac_address) == device:
|
||||
return slave
|
||||
|
||||
elif isinstance(device, DeviceInfo):
|
||||
for slave in self._device:
|
||||
if device.match(slave):
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
"FREQ_STOP": {
|
||||
"description": "End of Freq Scan",
|
||||
"record_meta": true,
|
||||
"initial": 1,
|
||||
"initial": 7,
|
||||
"domain": [
|
||||
"FREQ_MAX"
|
||||
],
|
||||
@@ -100,7 +100,7 @@
|
||||
"DC_BIAS": {
|
||||
"description": "DC voltage bias in mV",
|
||||
"record_meta": true,
|
||||
"initial": 0,
|
||||
"initial": 15000,
|
||||
"domain": [
|
||||
35001
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user