T1Control.cs
3.4 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
using Asa;
using CodeLibrary;
using DeviceLibrary;
using OnlineStore.Common;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using static Asa.eyemLib;
using static AutoCountMachine.eyemlib;
namespace AutoCountMachine
{
public partial class T1Control : UserControl
{
readonly Timer t1 = new Timer();
DeviceConfig _Config;
public DeviceConfig Config
{
get { return _Config; }
set
{
_Config = value;
ioControl1.Config = value;
configControl1.Config = value;
axisMoveControl1.LoadData(value);
}
}
public T1Control()
{
InitializeComponent();
RobotManage.LoadFinishEvent += RobotManage_LoadFinishEvent;
}
private void RobotManage_LoadFinishEvent(bool state, string msg)
{
if (state)
RobotManage.t1Machine.TrayStringLocation += T1Machine_TrayStringLocation;
}
private void T1Machine_TrayStringLocation(object sender, Bitmap e)
{
Invoke((EventHandler<Bitmap>)delegate{
pictureBox1.Image = e;
}, sender, e);
}
private void XrayControl_Load(object sender, EventArgs e)
{
}
private void btn_clamp_Click(object sender, EventArgs e)
{
RobotManage.electricGripper.Clamp();
}
private void btn_release_Click(object sender, EventArgs e)
{
RobotManage.electricGripper.Release();
}
private void btn_Reset_Click(object sender, EventArgs e)
{
if (RobotManage.t1Machine.runStatus != RunStatus.HomeReset)
{
RobotManage.t1Machine.BeginHomeReset();
}
}
private void button1_Click(object sender, EventArgs e)
{
var (bitmap, distance, debugtxt) = RobotManage.t1Machine.GetStringCenterA();
label_eyemMulFuncTool.Text = debugtxt + $"\ndistance:{distance}\nLocation:{(distance< RobotManage.t1Machine.Config.String_Offset_Range_Px?"OK":"NG")}";
pictureBox1.Image = bitmap;
}
private void btn_Empty_Linerun_Click(object sender, EventArgs e)
{
RobotManage.t1Machine.ShelfInLine.LineRun();
}
private void btn_Empty_Linestop_Click(object sender, EventArgs e)
{
RobotManage.t1Machine.ShelfInLine.LineStop("n");
}
private void btn_Full_Linerun_Click(object sender, EventArgs e)
{
RobotManage.t1Machine.ShelfOutLine.LineRun();
}
private void btn_Full_Linestop_Click(object sender, EventArgs e)
{
RobotManage.t1Machine.ShelfOutLine.LineStop("n");
}
private void button1_Click_1(object sender, EventArgs e)
{
var (bitmap, distance, debugtxt) = RobotManage.t1Machine.GetStringCenterB();
label_eyemMulFuncTool.Text = debugtxt + $"\ndistance:{distance}\nLocation:{(distance < RobotManage.t1Machine.Config.String_Offset_Range_Px ? "OK" : "NG")}";
pictureBox1.Image = bitmap;
}
}
}