EtherMania.com.WeatherShield1.echo C# (CSharp) Method

echo() public method

public echo ( Byte parameter ) : Byte
parameter Byte
return Byte
        public Byte echo(Byte parameter)
        {
            sendCommand(commands.CMD_ECHO_PAR, parameter);
            if (readAnswer(commands.CMD_ECHO_PAR))
                return m_tempBuffer[RXPAR1POS];

            return 0;
        }