领胜LDS 键盘AOI检测项目
xcd
2020-06-28 699bbf402e9d6333d4dcb0c75e6d32e4386fd6dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using Bro.Common.Base;
using Bro.Common.Helper;
using Bro.Common.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Bro.Device.Gocator
{
    [Device("Gocator", "Gocator激光扫描仪", EnumHelper.DeviceAttributeType.Device)]
    public class GocatorDriver : CameraBase
    {
        public override IOperationConfig GetOperationConfigFromDevice()
        {
            throw new NotImplementedException();
        }
 
        public override void Snapshot()
        {
            throw new NotImplementedException();
        }
 
        public override void UploadOperationConfig(IOperationConfig config)
        {
            throw new NotImplementedException();
        }
 
        protected override void Init()
        {
            throw new NotImplementedException();
        }
 
        protected override void Pause()
        {
            throw new NotImplementedException();
        }
 
        protected override void Resume()
        {
            throw new NotImplementedException();
        }
    }
}