Mini8Communicator_EtherCat.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using GeneralData;
  2. using HardwareData;
  3. using Mini8Communicator;
  4. using Mini8CommunicatorData;
  5. namespace Mini8CommunicatorEthercat;
  6. //public class Mini8Communicator_EtherCat : IMini8Communicator
  7. //{
  8. // bool IMini8Communicator.Initialize(IMini8Provider provider, IDictionary<byte, ChannelAddress> address)
  9. // {
  10. // throw new NotImplementedException();
  11. // }
  12. // bool IMini8Communicator.Close()
  13. // {
  14. // throw new NotImplementedException();
  15. // }
  16. // bool IMini8Communicator.Open(string IP, int port)
  17. // {
  18. // throw new NotImplementedException();
  19. // }
  20. // bool IMini8Communicator.SendMini8Data(byte c, Mini8Input output)
  21. // {
  22. // throw new NotImplementedException();
  23. // }
  24. // bool IMini8Communicator.Pause()
  25. // {
  26. // throw new NotImplementedException();
  27. // }
  28. // bool IMini8Communicator.StartDataCollector()
  29. // {
  30. // throw new NotImplementedException();
  31. // }
  32. // bool IMini8Communicator.EnableChannel(byte channelIndex, Inhibit inhibit)
  33. // {
  34. // throw new NotImplementedException();
  35. // }
  36. // bool IMini8Communicator.EnableChannelAutoTune(byte channelIndex, bool isEnable)
  37. // {
  38. // throw new NotImplementedException();
  39. // }
  40. // bool IMini8Communicator.SelectPID(byte channelIndex, ActiveTuneSet activeTuneSet)
  41. // {
  42. // throw new NotImplementedException();
  43. // }
  44. // bool IMini8Communicator.GetRealtimeDataFromDevice(out Dictionary<byte, Mini8Output>? data)
  45. // {
  46. // throw new NotImplementedException();
  47. // }
  48. // bool IMini8Communicator.GetRealtimeLimit(out Dictionary<byte, Mini8Limit>? data)
  49. // {
  50. // throw new NotImplementedException();
  51. // }
  52. //}