private WiFlyClient(byte[] ip, string hostname, ushort port)
        {
            _ip = ip;
            _port = port;
            _hostname = hostname;

            _open = false;

            SpiUartDevice uart = new SpiUartDevice();
            _wiFly = new WiFlyDevice(uart);
            _stream = new ParsedStream(uart);
        }
        private WiFlyClient(byte[] ip, string hostname, ushort port)
        {
            _ip       = ip;
            _port     = port;
            _hostname = hostname;

            _open = false;

            SpiUartDevice uart = new SpiUartDevice();

            _wiFly  = new WiFlyDevice(uart);
            _stream = new ParsedStream(uart);
        }