|
|
@@ -2,6 +2,7 @@ |
|
|
|
using HBLConsole.Service; |
|
|
|
using HBLDevice.Coffee; |
|
|
|
using HBLDevice.IceCream; |
|
|
|
using PropertyChanged; |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
@@ -11,6 +12,7 @@ using System.Threading.Tasks; |
|
|
|
|
|
|
|
namespace HBLConsole.Debug |
|
|
|
{ |
|
|
|
[AddINotifyPropertyChangedInterface] |
|
|
|
internal class ViewModel_MORKIC |
|
|
|
{ |
|
|
|
#region 咖啡机 |
|
|
@@ -102,7 +104,7 @@ namespace HBLConsole.Debug |
|
|
|
|
|
|
|
ThreadOperate.GetInstance.StartLong(new Action(() => |
|
|
|
{ |
|
|
|
CoffeeStatus = MorkCStatus.GetInstance().CoffeeStatus; |
|
|
|
//CoffeeStatus = MorkCStatus.GetInstance().CoffeeStatus; |
|
|
|
AppStatus = MorkCStatus.GetInstance().AppStatus; |
|
|
|
Warning = MorkCStatus.GetInstance().Warning; |
|
|
|
CaffeeFault = MorkCStatus.GetInstance().Fault; |
|
|
@@ -115,6 +117,7 @@ namespace HBLConsole.Debug |
|
|
|
CurrentMode = MorkIStatus.GetInstance().CurrentMode; |
|
|
|
IceCreamFault = MorkIStatus.GetInstance().Fault; |
|
|
|
CXB = MorkIStatus.GetInstance().CXB; |
|
|
|
|
|
|
|
Thread.Sleep(500); |
|
|
|
}), "MORK IC-状态刷新"); |
|
|
|
} |
|
|
|