rossmann-engineering/EasyModbusTCP.NET

Feature request: async methods

sandervandegeijn opened this issue · 1 comments

Would be nice to have those so calls can be awaited. :)

I wrap them like this to await the ones I need:
private async Task _writeSingleCoilAsync(int address, bool value) { await Task.Run(() => _modbus.WriteSingleCoil(address, value)); }