Analog output in Hydra

Hi,

I’m using a following code to initialize analog output through the Breakout module connected to the Socket #14.


        void ProgramStarted()
        {
            var o = breakout.CreateAnalogOutput(GT.Socket.Pin.Five);
            o.WriteVoltage(0.3);
        }

Unfortunately I receive an exception: [em]An unhandled exception of type ‘Gadgeteer.Socket.InvalidSocketException’ occurred in Gadgeteer.dll. Additional information: Socket 14 does not support type ‘O’ required by Breakout module. [/em]

Which Sockets/Pins do support analog output and how to use it?

Thanks!

You need socket type O. Hydra doesn’t have it unfortunately