12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Sensors
- {
- //public abstract class Sensor : DeviceBase, ISensor
- //{
- // public Sensor(string module, string name) : base(module, name)
- // {
- // }
- // public bool Initialize()
- // {
- // return true;
- // }
- // public void Monitor()
- // {
-
- // }
- // public void Reset()
- // {
-
- // }
- // public void Terminate()
- // {
-
- // }
- //}
- }
|