from WebSQController import WebSQController

# Please change this to be the IP address of the driver in your network
websq_domain = 'http://192.168.10.10/'
sq = WebSQController(websq_domain)

print("Setting the bias current to 20 uA, for channel 1")

sq.setBiasI(20e-6, channels=[1])

print("Getting the bias current value of channel 1:")
print(sq.getBiasI(channels=[1]))
