from NerveController import NerveController

# Please change this to be the IP address of the driver in your network
nerve_domain = 'http://192.168.10.10/'
sq = NerveController(nerve_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]))
