AForge.Robotics.Lego.RCXBrick.PlaySound C# (CSharp) 메소드

PlaySound() 공개 메소드

Play one of supported sounds.
public PlaySound ( SoundType type ) : bool
type SoundType Sound type to play.
리턴 bool
        public bool PlaySound( SoundType type )
        {
            return SendCommand( new byte[] { (byte) RCXCommand.PlaySound, (byte) type }, new byte[1], 1 ); ;
        }