I can control one channel of Zotino via the following code, how can I control many channels of the Zotino?
Simultaneous control of more than one channel of Zotino
What do you mean by "control multiple channels"? If you want to set multiple voltages at once, you can use write_dac
multiple times and then one load
. Something like this should work in that case:
self.zotino0.write_dac(1, 1*V)
delay(100*us)
self.zotino0.write_dac(3, 0.5*V)
delay(100*us)
self.zotino0.write_dac(10, 2*V)
delay(100*us)
self.zotino0.load()
8 months later
Thanks it works
4 days later