You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.Message.Enum;
- using BPASmartClient.Device;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.TourismCollege
- {
- public class Control_MorkCL : BaseDevice
- {
- public override DeviceClientType DeviceType => DeviceClientType.MORKCL;
-
- GVL_MorkCL morkCL = new GVL_MorkCL();
- Alarm alarm = new Alarm();
-
- public override void DoMain()
- {
- MonitorViewModel.DeviceId = DeviceId;
- }
-
- public override void MainTask()
- {
- throw new NotImplementedException();
- }
-
- public override void ReadData()
- {
- throw new NotImplementedException();
- }
-
- public override void ResetProgram()
- {
- morkCL = null;
- morkCL = new GVL_MorkCL();
- }
-
- public override void SimOrder()
- {
- }
-
- public override void Stop()
- {
- }
- }
- }
|