24 lines
472 B
C#
24 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace eCIAv2.Library.Devices.Scanner
|
|
{
|
|
public class Cognex : IScanner
|
|
{
|
|
public string DeviceName { get; set; } = string.Empty;
|
|
|
|
public Action<string> OnRecvData()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string Trigger()
|
|
{
|
|
return DeviceName;
|
|
}
|
|
}
|
|
}
|