I can control one channel of Zotino via the following code, how can I control many channels of the 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()
  • KRY replied to this.

    steine01 I mean there are 32 outputs of Zotino, I want to set different voltages to different outputs

      8 months later

      Thanks it works

      4 days later