yokogawa GS200 has a range description CMD as 10V,However when the range is set to 10V,the actually range is 0-12v
in Yokogawa_GS200.py
from line 160~165 maybe change to this to fix this bug
# If we are still out of range, raise a value error
if (abs(output_level) > abs(self_range)*1.2) or (abs(output_level)>32):
raise ValueError(
"Desired output level not in range"
f" [-{self_range:.3}, {self_range:.3}]"
)
yokogawa GS200 has a range description CMD as 10V,However when the range is set to 10V,the actually range is 0-12v
in Yokogawa_GS200.py
from line 160~165 maybe change to this to fix this bug