CanRead/BlazorApp/Models/Canopen/ICanopenDeviceDecoder.cs
2026-01-23 11:20:08 +07:00

11 lines
217 B
C#

using BlazorApp.Models;
namespace BlazorApp.Models.Canopen
{
public interface ICanopenDeviceDecoder
{
int NodeId { get; }
string DecodeTpdo(int pdoIndex, byte[] data, byte length);
}
}