diff --git a/examples/multiplane_ophys_rig.json b/examples/multiplane_ophys_rig.json index e40b61e08..9cf76a16c 100644 --- a/examples/multiplane_ophys_rig.json +++ b/examples/multiplane_ophys_rig.json @@ -688,7 +688,30 @@ "beam_modulation_unit": "Volts" } ], - "additional_devices": [], + "additional_devices": [ + { + "device_type": "Computer", + "name": "MESO1STIM", + "serial_number": null, + "manufacturer": null, + "model": null, + "path_to_cad": null, + "port_index": null, + "additional_settings": {}, + "notes": null + }, + { + "device_type": "Computer", + "name": "MESO1SYNC", + "serial_number": null, + "manufacturer": null, + "model": null, + "path_to_cad": null, + "port_index": null, + "additional_settings": {}, + "notes": null + } + ], "daqs": [ { "device_type": "DAQ Device", @@ -734,7 +757,18 @@ "notes": null, "data_interface": "PCIe", "computer_name": "SYNC", - "channels": [], + "channels": [ + { + "channel_name": "P0.3", + "device_name": "MESO1STIM", + "channel_type": "Digital Input", + "port": 0, + "channel_index": 3, + "sample_rate": "100.0", + "sample_rate_unit": "kilohertz", + "event_based_sampling": null + } + ], "firmware_version": null, "hardware_version": null }, diff --git a/examples/multiplane_ophys_rig.py b/examples/multiplane_ophys_rig.py index 4c15a64c9..18b585f81 100644 --- a/examples/multiplane_ophys_rig.py +++ b/examples/multiplane_ophys_rig.py @@ -19,6 +19,7 @@ DAQDevice, DataInterface, Detector, + Device, Disc, Filter, Laser, @@ -536,13 +537,17 @@ serial_number="354683BK", ) ], - additional_devices=[], + additional_devices=[ + Device(device_type="Computer", name="MESO1STIM"), + Device(device_type="Computer", name="MESO1SYNC"), + ], daqs=[ DAQDevice( device_type="DAQ Device", name="VBEB DAQ", serial_number=None, manufacturer=Organization.NATIONAL_INSTRUMENTS, + channels=[], model="USB-6001", path_to_cad=None, port_index=None, @@ -550,7 +555,6 @@ notes=None, data_interface="USB", computer_name="STIM", - channels=[], firmware_version=None, hardware_version=None, ), @@ -566,7 +570,17 @@ notes=None, data_interface="PCIe", computer_name="SYNC", - channels=[], + channels=[ + DAQChannel( + channel_name="P0.3", + device_name="MESO1STIM", + channel_type=DaqChannelType.DI, + port=0, + channel_index=3, + sample_rate=100.0, + sample_rate_unit=FrequencyUnit.KHZ, + ) + ], firmware_version=None, hardware_version=None, ),