HumiturePortCommand.cs 242 B

12345678910
  1. namespace SHJX.Service.PortClient.Commands
  2. {
  3. internal class HumiturePortCommand : IPortCommand
  4. {
  5. public override object Execute(PortEventArgs args)
  6. {
  7. return Rs485Client.HumitureRead();
  8. }
  9. }
  10. }