File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/aind_data_schema/components Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -622,7 +622,9 @@ Description of visual display for visual stimuli
622622| ` viewing_distance ` | ` decimal.Decimal ` | Viewing distance (cm) |
623623| ` viewing_distance_unit ` | [ SizeUnit] ( ../aind_data_schema_models/units.md#sizeunit ) | Viewing distance unit |
624624| ` contrast ` | ` Optional[int] ` | Contrast (Monitor's contrast setting) |
625+ | ` contrast_unit ` | ` Optional[UnitlessUnit] ` | Contrast unit |
625626| ` brightness ` | ` Optional[int] ` | Brightness (Monitor's brightness setting) |
627+ | ` brightness_unit ` | ` Optional[UnitlessUnit] ` | Brightness unit |
626628| ` name ` | ` str ` | Device name |
627629| ` serial_number ` | ` Optional[str] ` | Serial number |
628630| ` model ` | ` Optional[str] ` | Model |
Original file line number Diff line number Diff line change @@ -608,13 +608,15 @@ class Monitor(Device, DevicePosition):
608608 ge = 0 ,
609609 le = 100 ,
610610 )
611+ contrast_unit : Optional [UnitlessUnit ] = Field (default = None , title = "Contrast unit" )
611612 brightness : Optional [int ] = Field (
612613 default = None ,
613614 description = "Monitor's brightness setting" ,
614615 title = "Brightness" ,
615616 ge = 0 ,
616617 le = 100 ,
617618 )
619+ brightness_unit : Optional [UnitlessUnit ] = Field (default = None , title = "Brightness unit" )
618620
619621
620622class LickSpout (Device ):
You can’t perform that action at this time.
0 commit comments