Sensor.cs 665 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using MECF.Framework.RT.Core.Equipments;
  7. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Sensors
  8. {
  9. public abstract class Sensor : DeviceBase, ISensor
  10. {
  11. public Sensor(string module, string name) : base(module, name)
  12. {
  13. }
  14. public bool Initialize()
  15. {
  16. return true;
  17. }
  18. public void Monitor()
  19. {
  20. }
  21. public void Reset()
  22. {
  23. }
  24. public void Terminate()
  25. {
  26. }
  27. }
  28. }