Feature request: async methods
sandervandegeijn opened this issue · 1 comments
sandervandegeijn commented
Would be nice to have those so calls can be awaited. :)
pkstrsk commented
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)); }