You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
595 B
C#
26 lines
595 B
C#
using Rs.MotionPlat.Flow;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Rs.MotionPlat.Commom
|
|
{
|
|
public class VacManager
|
|
{
|
|
public static bool AllIsSafe()
|
|
{
|
|
bool[] safe = new[] { false,false};
|
|
//AxisControl.VacZ1.GetOrgStatus(out safe[0]);
|
|
//AxisControl.VacZ2.GetOrgStatus(out safe[0]);
|
|
return safe.Where(b => b == false).Count() == 0;
|
|
}
|
|
|
|
public static void OpenLoadNozzle(List<int> nozzleIndexs)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|