| 12345678910111213141516171819 |
- namespace SHJX.Service.PortClient.Commands
- {
- public class HeatingReadPortCommand : IPortCommand
- {
- public override object Execute(PortEventArgs args)
- {
- double pv = 0;
- double sv = 0;
- ReadPVnSV(args.NodeId, ref pv, ref sv);
- Dictionary<string, double> temp = new()
- {
- { "pv", pv },
- { "sv", sv }
- };
- return temp;
- }
- }
- }
|