Modulation in laser lock box mode

Dear all,

I am trying to set a modulation frequency in the laser lock box mode. There is clear documentation available for demodulation, but there doesn’t seem to be any for modulation. With the Windows app, I can modulate the signal, so I am fairly certain it is also possible in Python.

Please let me know if you have any insights or solutions.

Best regards,
Saman

Hello @Saman,
The set_demoduation function actually configures the modulation source. If you are trying to set the modulation frequency, the code would be something like i.set_demodulation(mode='Modulation', frequency=1e6).

Dear Dylan, thanks for your answer. The code that worked for me was:

i.set_aux_oscillator(enable=True, frequency = 1e6, amplitude = 0.5, output='Output1')

Thanks for your help.