Beispiel #1
0
        public async Task <bool> ReaderTextOutput(Guid connectionId, byte address, ReaderTextOutput readerTextOutput)
        {
            var reply = await SendCommand(connectionId,
                                          new ReaderTextOutputCommand(address, readerTextOutput)).ConfigureAwait(false);

            return(reply.Type == ReplyType.Ack);
        }
 public ReaderTextOutputCommand(byte address, ReaderTextOutput readerTextOutput)
 {
     _readerTextOutput = readerTextOutput;
     Address           = address;
 }