AForge.Robotics.TeRK.Qwerk.Servos.StopServos C# (CSharp) Метод

StopServos() публичный Метод

Stop all servos.
No connection to Qwerk or its service. Connestion to Qwerk is lost.
public StopServos ( ) : int[]
Результат int[]
            public int[] StopServos( )
            {
                bool[] mask = new bool[Count];

                for ( int i = 0; i < Count; i++ )
                {
                    mask[i] = true;
                }

                return StopServos( mask );
            }

Same methods

Qwerk.Servos::StopServos ( bool mask ) : int[]