using Robotc; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkT { public class GLV_MorkT { /// /// 咖啡订单队列 /// public ConcurrentQueue morkOrderPushesCoffee = new ConcurrentQueue(); /// /// 冰淇淋订单队列 /// public ConcurrentQueue morkOrderPushesIceCream = new ConcurrentQueue(); /// /// 物料存放位置 /// public Dictionary batchings = new Dictionary(); /// /// 当前正在制作咖啡 /// public OrderLocInfo MakeCoffeeOrder = new OrderLocInfo(); /// /// 获取乐百机器人的数据 /// public SignalResult lebai = new SignalResult(); /// /// 咖啡机位置是否有咖啡在制作中 /// public bool IsCoffeeMake = false; /// /// 冰淇淋机器出料口传感器检测 /// public bool IceIsOK = true; } }