Commit c50d3c7f authored by 潘栩锋's avatar 潘栩锋 🚴

修改旋转时间的限制。现在最大25min

parent e35eee20
......@@ -268,4 +268,8 @@
M563.2 675.84c0 30.72-25.6 51.2-51.2 51.2-30.72 0-51.2-25.6-51.2-51.2h102.4z
M476.16 332.8c0-20.48 15.36-35.84 35.84-35.84 20.48 0 35.84 15.36 35.84 35.84 71.68 10.24 122.88 71.68 122.88 148.48v128l40.96 46.08c5.12 5.12 5.12 10.24 5.12 20.48-5.12 5.12-10.24 10.24-15.36 10.24H322.56c-5.12 0-15.36-5.12-15.36-10.24-5.12-5.12 0-15.36 5.12-20.48l40.96-46.08V476.16c0-71.68 51.2-133.12 122.88-143.36z
</Geometry>
<Geometry x:Key="Geometry_ruler">
M703.3856 34.440533l289.621333 289.621334a34.133333 34.133333 0 0 1 0 48.264533L365.4656 999.867733a34.133333 34.133333 0 0 1-48.264533 0L27.579733 710.2464a34.133333 34.133333 0 0 1 0-48.298667L655.086933 34.474667a34.133333 34.133333 0 0 1 48.298667 0zM606.8224 179.2l-48.264533 48.264533 96.529066 96.5632 48.298667-48.264533-96.5632-96.5632z m-193.092267 193.092267l-48.264533 48.264533 96.5632 96.5632 48.264533-48.264533-96.5632-96.5632z m-193.092266 193.092266L172.373333 613.6832l96.5632 96.5632 48.264534-48.298667-96.5632-96.529066zM510.293333 275.797333l-48.264533 48.264534 193.058133 193.092266 48.298667-48.264533L510.293333 275.797333z m-193.092266 193.092267L268.936533 517.12l193.092267 193.092267 48.264533-48.298667-193.092266-193.058133z
</Geometry>
</ResourceDictionary>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1544575792789" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4299" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M703.3856 34.440533l289.621333 289.621334a34.133333 34.133333 0 0 1 0 48.264533L365.4656 999.867733a34.133333 34.133333 0 0 1-48.264533 0L27.579733 710.2464a34.133333 34.133333 0 0 1 0-48.298667L655.086933 34.474667a34.133333 34.133333 0 0 1 48.298667 0zM606.8224 179.2l-48.264533 48.264533 96.529066 96.5632 48.298667-48.264533-96.5632-96.5632z m-193.092267 193.092267l-48.264533 48.264533 96.5632 96.5632 48.264533-48.264533-96.5632-96.5632z m-193.092266 193.092266L172.373333 613.6832l96.5632 96.5632 48.264534-48.298667-96.5632-96.529066zM510.293333 275.797333l-48.264533 48.264534 193.058133 193.092266 48.298667-48.264533L510.293333 275.797333z m-193.092266 193.092267L268.936533 517.12l193.092267 193.092267 48.264533-48.298667-193.092266-193.058133z" p-id="4300"></path></svg>
\ No newline at end of file
......@@ -29,56 +29,20 @@ namespace FLY.Thick.Blowing.UI.Fix.Client
{
BlowingFixServiceClient mRenZiJiaService;
BlowingDetectServiceClient mBDetect;
private bool isBufListLoading = false;
/// <summary>
/// 数据加载中
/// </summary>
public bool IsBufListLoading
{
get { return isBufListLoading; }
set
{
if (isBufListLoading != value)
{
isBufListLoading = value;
NotifyPropertyChanged("IsBufListLoading");
}
}
}
private int firstsignbm = -1;
public bool IsBufListLoading { get; set; }
/// <summary>
/// 信号列表第一个记录序号
/// </summary>
public int FirstSignBM
{
get { return firstsignbm; }
protected set
{
if (firstsignbm != value)
{
firstsignbm = value;
NotifyPropertyChanged("FirstSignBM");
}
}
}
private int lastsignbm = -1;
public int FirstSignBM { get; protected set; } = -1;
/// <summary>
/// 信号列表最后一个记录序号
/// </summary>
public int LastSignBM
{
get { return lastsignbm; }
protected set
{
if (lastsignbm != value)
{
lastsignbm = value;
NotifyPropertyChanged("LastSignBM");
}
}
}
public int LastSignBM { get; protected set; } = -1;
ObservableCollection<SignData> mSignList = new ObservableCollection<SignData>();
ObservableCollection<BoltMapCell> mBoltMap = new ObservableCollection<BoltMapCell>();
......@@ -145,7 +109,7 @@ namespace FLY.Thick.Blowing.UI.Fix.Client
return false;
}
if ((mBDetect.DefaultRPeriod.TotalMinutes < 3) || (mBDetect.DefaultRPeriod.TotalMinutes > 16))
if ((mBDetect.DefaultRPeriod.TotalMinutes < 3) || (mBDetect.DefaultRPeriod.TotalMinutes > 25))
{
message = "旋转时间";
return false;
......@@ -253,8 +217,8 @@ namespace FLY.Thick.Blowing.UI.Fix.Client
private void button_download_Click(object sender, RoutedEventArgs e)
{
if (IsBufListLoading)
return;
//if (IsBufListLoading)
// return;
IsBufListLoading = true;
mBDetect.GetSignList(
......
......@@ -119,7 +119,7 @@
</Button>
<Button Click="button_menu_click">
<StackPanel >
<Path Data="{StaticResource Geometry_stethoscope}" />
<Path Data="{StaticResource Geometry_ruler}" />
<TextBlock Text="测厚仪" />
</StackPanel>
</Button>
......
......@@ -26,24 +26,6 @@
<Path>佛山市枫莱尔自动化技术有限公司\windows\FLY.FeedbackRenZiJia.UI.Server</Path>
<Exe>FLY.FeedbackRenZiJia.UI.Server.exe</Exe>
</SoftwareItem>
<SoftwareItem>
<IsAutoRun>true</IsAutoRun>
<Name>自动上料</Name>
<Path>佛山市枫莱尔自动化技术有限公司\windows\FLY.Weight.UI.Server</Path>
<Exe>FLY.Weight.UI.Server.exe</Exe>
</SoftwareItem>
<SoftwareItem>
<IsAutoRun>true</IsAutoRun>
<Name>收卷</Name>
<Path>佛山市枫莱尔自动化技术有限公司\windows\FLY.Winder.UI.Server</Path>
<Exe>FLY.Winder.UI.Server.exe</Exe>
</SoftwareItem>
<SoftwareItem>
<IsAutoRun>true</IsAutoRun>
<Name>IBC</Name>
<Path>佛山市枫莱尔自动化技术有限公司\windows\FLY.IBC.UI.Server</Path>
<Exe>FLY.IBC.UI.Server.exe</Exe>
</SoftwareItem>
<SoftwareItem>
<IsAutoRun>true</IsAutoRun>
<Name>LP2</Name>
......
<?xml version="1.0" encoding="utf-8"?>
<PLCGroup>
<Devices>
<PLCDevice EP="192.168.50.30:502" />
</Devices>
<Variables>
<PLCVariable DeviceIndex="0" Mode="0" Addr="64513" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsInletAirOn" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="6120" Type="uint16" Scale="0.1" OwnerName="Item" PropertyName="InletAirFreq" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="3200" Type="uint16" Scale="0.1" OwnerName="Item" PropertyName="InletAirFreqSet" />
<PLCVariable DeviceIndex="0" Mode="0" Addr="64514" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsOutletAirOn" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="6220" Type="uint16" Scale="0.1" OwnerName="Item" PropertyName="OutletAirFreq" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="592" Type="uint16" Scale="0.1" OwnerName="Item" PropertyName="OutletAirFreqSet" />
<PLCVariable DeviceIndex="0" Mode="0" Addr="99" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsOutletAirFreqChanged" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="668" Type="uint16" Scale="1" OwnerName="Item" PropertyName="FilmWidth" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="230" Type="uint16" Scale="1" OwnerName="Item" PropertyName="FilmWidthSet" />
<PLCVariable DeviceIndex="0" Mode="0" Addr="800" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsFilmWidthChanged" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="340" Type="int16" Scale="1" OwnerName="Item" PropertyName="ErrorCorrection" />
<PLCVariable DeviceIndex="0" Mode="0" Addr="659" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsIBCAuto" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1140" Type="uint16" Scale="1" OwnerName="Item" PropertyName="K1" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1142" Type="uint16" Scale="1" OwnerName="Item" PropertyName="K2" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1144" Type="uint16" Scale="1" OwnerName="Item" PropertyName="K3" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="250" Type="float" Scale="1" OwnerName="Item" PropertyName="L" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="18" Type="float" Scale="1" OwnerName="Item" PropertyName="BubbleCorrA" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="28" Type="float" Scale="1" OwnerName="Item" PropertyName="BubbleCorrB" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="38" Type="float" Scale="1" OwnerName="Item" PropertyName="BubbleCorrC" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="102" Type="float" Scale="1" OwnerName="Item" PropertyName="BubbleCorrR" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="300" Type="uint16" Scale="0.1" OwnerName="Item" PropertyName="SampleInterval" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="304" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area1Set" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1001" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area1P" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1002" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area1I" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1003" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area1D" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1004" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area1DI" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="2550" Type="uint16" Scale="0.01" OwnerName="Item" PropertyName="AdjustFactor" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="2050" Type="int16" Scale="1" OwnerName="Item" PropertyName="PIDResult" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="2052" Type="int16" Scale="1" OwnerName="Item" PropertyName="PIDAdjust" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="710" Type="uint16" Scale="1" OwnerName="Item" PropertyName="InletAirVelocity" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="712" Type="uint16" Scale="1" OwnerName="Item" PropertyName="OutletAirVelocity" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="306" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area2Set" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1201" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area2P" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1202" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area2I" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="1203" Type="uint16" Scale="1" OwnerName="Item" PropertyName="Area2D" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="420" Type="float" Scale="1" OwnerName="Item" PropertyName="Sensor1DeadZone" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="430" Type="float" Scale="1" OwnerName="Item" PropertyName="Sensor2DeadZone" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="440" Type="float" Scale="1" OwnerName="Item" PropertyName="Sensor3DeadZone" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="200" Type="float" Scale="1" OwnerName="Item" PropertyName="Sensor1Factor" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="400" Type="float" Scale="1" OwnerName="Item" PropertyName="Sensor2Factor" />
<PLCVariable DeviceIndex="0" Mode="4" Addr="410" Type="float" Scale="1" OwnerName="Item" PropertyName="Sensor3Factor" />
<PLCVariable DeviceIndex="0" Mode="1" Addr="63496" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsInletAirMotorError" />
<PLCVariable DeviceIndex="0" Mode="1" Addr="63497" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsOutletAirMotorError" />
<PLCVariable DeviceIndex="0" Mode="0" Addr="403" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsInletAirCommError" />
<PLCVariable DeviceIndex="0" Mode="0" Addr="404" Type="bool" Scale="1" OwnerName="Item" PropertyName="IsOutletAirCommError" />
</Variables>
</PLCGroup>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<IBCSystem>
<CtrlListData Size="10000" Interval="2" />
</IBCSystem>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<TDGage OBJ_Port="20003" />
\ No newline at end of file
时间, 出错码,状态,描述
2018/12/5 18:57:58,255,ON,IBC PLC连接断开
2018/12/6 11:58:44,255,ON,IBC PLC连接断开
2018/12/6 11:58:45,255,OFF,IBC PLC连接断开
<?xml version="1.0" encoding="utf-8"?>
<SysParam ServerEP="127.0.0.1:20007" ThickEP="127.0.0.1:20006" PositionX="0" PositionWidth="100" InnerPlotPositionX="5" InnerPlotPositionY="5" InnerPlotPositionWidth="90" InnerPlotPositionHeight="80" IsHideStable="False" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<SysParam ServerEP="127.0.0.1:20003">
<GraphParams WindowSize="1000" FilmWidthAxisYRange="20" IsAxisYRangeAuto="False" DAxisYRange="10" DAxisYTarget="0" />
</SysParam>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<FLYLayout DynAreaWidth="250" IsDynAreaVisible="True" Left="0" Top="2" Width="1366" Height="768" WindowState="Maximized">
<Items>
<GraphTabItem Header="收 卷" ColumnCount="1" RowCount="1">
<ColumnDefinitions>
<Boolean value="False" />
</ColumnDefinitions>
<RowDefinitions>
<Boolean value="False" />
</RowDefinitions>
<Graphs>
<GraphComponent ID="49956960" Module="FLY.Winder.UI.Client.UIModule.UIModule_Main" Row="0" Column="0" RowSpan="1" ColumnSpan="1" />
</Graphs>
</GraphTabItem>
<GraphTabItem Header="称 重" ColumnCount="1" RowCount="1">
<ColumnDefinitions>
<Boolean value="False" />
</ColumnDefinitions>
<RowDefinitions>
<Boolean value="False" />
</RowDefinitions>
<Graphs>
<GraphComponent ID="60426628" Module="FLY.Weight.UI.Client.UIModule.UIModule_Main" Row="0" Column="0" RowSpan="1" ColumnSpan="1" />
</Graphs>
</GraphTabItem>
<GraphTabItem Header="I B C" ColumnCount="1" RowCount="1">
<ColumnDefinitions>
<Boolean value="False" />
</ColumnDefinitions>
<RowDefinitions>
<Boolean value="False" />
<Boolean value="False" />
</RowDefinitions>
<Graphs>
<GraphComponent ID="65203096" Module="FLY.IBC.UI.Client.UIModule.UIModule_Main" Row="0" Column="0" RowSpan="1" ColumnSpan="1" />
</Graphs>
</GraphTabItem>
<GraphTabItem Header="风 环" ColumnCount="1" RowCount="4">
<ColumnDefinitions>
<Boolean value="False" />
......@@ -89,7 +55,6 @@
</RowDefinitions>
<Graphs>
<GraphComponent ID="56082556" Module="trendgraph" Row="0" Column="0" RowSpan="1" ColumnSpan="1" />
<GraphComponent ID="36196647" Module="FLY.Weight.UI.Client.UIModule.UIModule_FlowGraph" Row="1" Column="0" RowSpan="1" ColumnSpan="1" />
</Graphs>
</GraphTabItem>
<GraphTabItem Header="定 点" ColumnCount="1" RowCount="2">
......@@ -112,8 +77,5 @@
</ControllerStates>
<DynAreaItems>
<DynAreaComponent ID="43395070" Module="FLY.FeedbackRenZiJia.UI.Client.UIModule.UIModule_DynAreaFB" />
<DynAreaComponent ID="55011311" Module="FLY.IBC.UI.Client.UIModule.UIModule_DynArea" />
<DynAreaComponent ID="25339754" Module="FLY.Weight.UI.Client.UIModule.UIModule_DynArea" />
<DynAreaComponent ID="26731201" Module="FLY.Winder.UI.Client.UIModule.UIModule_DynArea" />
</DynAreaItems>
</FLYLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<ScanGraphParams IsReversed="False" LRIsVisable="False" LRIsReversed="False" XInterval="10">
<Items>
<ScanGraphItemParam ID="14237802" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="False" />
<ScanGraphItemParam ID="36721318" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="False" />
<ScanGraphItemParam ID="41846616" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="False" />
<ScanGraphItemParam ID="4049537" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="False" />
<ScanGraphItemParam ID="48011444" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="False" />
<ScanGraphItemParam ID="13031334" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="False" />
<ScanGraphItemParam ID="14237802" Title="扫描图" ChartType="Column" BM="-1" Mix="1" YRangePercent="3" IsAutoTarget="True" IsPercent="True" />
<ScanGraphItemParam ID="36721318" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="False" IsPercent="True" />
<ScanGraphItemParam ID="41846616" Title="扫描图" ChartType="Column" BM="-3" Mix="1" YRangePercent="3" IsAutoTarget="True" IsPercent="True" />
<ScanGraphItemParam ID="4049537" Title="扫描图" ChartType="Column" BM="-2" Mix="1" YRangePercent="3" IsAutoTarget="True" IsPercent="True" />
<ScanGraphItemParam ID="48011444" Title="扫描图" ChartType="Column" BM="-1" Mix="1" YRangePercent="3" IsAutoTarget="True" IsPercent="True" />
<ScanGraphItemParam ID="13031334" Title="扫描图" ChartType="Column" BM="0" Mix="1" YRangePercent="3" IsAutoTarget="True" IsPercent="True" />
</Items>
</ScanGraphParams>
\ No newline at end of file
<?xml version="1.0"?>
<ArrayOfUIModuleParam xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<UIModuleParam>
<dll_filename>FLY.IBC.UI.Client.dll</dll_filename>
<assembly_name>FLY.IBC.UI.Client.UIModule</assembly_name>
<class_name>UIModule_Main</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>true</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.IBC.UI.Client.dll</dll_filename>
<assembly_name>FLY.IBC.UI.Client.UIModule</assembly_name>
<class_name>UIModule_DynArea</class_name>
<IsDynAreaComponent>true</IsDynAreaComponent>
<IsGraphCompnonent>false</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.IBC.UI.Client.dll</dll_filename>
<assembly_name>FLY.IBC.UI.Client.UIModule</assembly_name>
<class_name>UIModule_Menu</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>false</IsGraphCompnonent>
<IsMenuCompnonent>true</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
</ArrayOfUIModuleParam>
\ No newline at end of file
<?xml version="1.0"?>
<ArrayOfUIModuleParam xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<UIModuleParam>
<dll_filename>FLY.Weight.UI.Client.dll</dll_filename>
<assembly_name>FLY.Weight.UI.Client.UIModule</assembly_name>
<class_name>UIModule_Main</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>true</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.Weight.UI.Client.dll</dll_filename>
<assembly_name>FLY.Weight.UI.Client.UIModule</assembly_name>
<class_name>UIModule_FlowGraph</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>true</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.Weight.UI.Client.dll</dll_filename>
<assembly_name>FLY.Weight.UI.Client.UIModule</assembly_name>
<class_name>UIModule_DynArea</class_name>
<IsDynAreaComponent>true</IsDynAreaComponent>
<IsGraphCompnonent>false</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.Weight.UI.Client.dll</dll_filename>
<assembly_name>FLY.Weight.UI.Client.UIModule</assembly_name>
<class_name>UIModule_Menu</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>false</IsGraphCompnonent>
<IsMenuCompnonent>true</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
</ArrayOfUIModuleParam>
\ No newline at end of file
<?xml version="1.0"?>
<ArrayOfUIModuleParam xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<UIModuleParam>
<dll_filename>FLY.Winder.UI.Client.dll</dll_filename>
<assembly_name>FLY.Winder.UI.Client.UIModule</assembly_name>
<class_name>UIModule_Main</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>true</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.Winder.UI.Client.dll</dll_filename>
<assembly_name>FLY.Winder.UI.Client.UIModule</assembly_name>
<class_name>UIModule_DynArea</class_name>
<IsDynAreaComponent>true</IsDynAreaComponent>
<IsGraphCompnonent>false</IsGraphCompnonent>
<IsMenuCompnonent>false</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
<UIModuleParam>
<dll_filename>FLY.Winder.UI.Client.dll</dll_filename>
<assembly_name>FLY.Winder.UI.Client.UIModule</assembly_name>
<class_name>UIModule_Menu</class_name>
<IsDynAreaComponent>false</IsDynAreaComponent>
<IsGraphCompnonent>false</IsGraphCompnonent>
<IsMenuCompnonent>true</IsMenuCompnonent>
<IsUnique>true</IsUnique>
</UIModuleParam>
</ArrayOfUIModuleParam>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<SysParam ServerEP="127.0.0.1:20005" BinCnts_json="[4,4,4]" HasThickness="True" WindowSize="30">
<GraphParams WindowSize="1000" AxisYRange="20" IsAxisYRangeAuto="True" />
</SysParam>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<SysParam ServerEP="127.0.0.1:20004" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<BlowingDetect RAngle="337" AccDecTime="00:00:01" LimitSignTime="00:00:13.0360000" FilmLength="25" RollPerimeter="314" DefaultRPeriod="00:05:00" IsSign0Double="False" IsSign1Double="False" SignType="Short" IsSignFilter="False" IsLackSignMode="True" />
\ No newline at end of file
<BlowingDetect RAngle="350" AccDecTime="00:00:01" LimitSignTime="00:00:13.0350000" FilmLength="22" RollPerimeter="314" DefaultRPeriod="00:06:48" IsSign0Double="False" IsSign1Double="False" SignType="Short" IsSignFilter="False" IsLackSignMode="False" />
\ No newline at end of file
......@@ -70,3 +70,8 @@ bookmark,time,type,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,2
69,2018/09/04 22:56:14,0,7172,7150,7121,7126,7138,7151,7162,7187,7171,7096,7126,7112,7020,7111,7130,7102,7214,7247,7227,7244,7244,7242,7237,7210,7217,7241,7241,7288,7341,7307,7336,7402,7324,7305,7369,7412,7451,7369,7425,7585,7446,7352,7389,7380,7307,7208,7163,7181,7173,7149,7228,7302,7405,7527,7626,7701,7749,7760,7752,7752,7690,7568,7566,,,,,,,,,,,,,,,,,,,,,,,,,
70,2018/09/04 22:59:56,1,7704,7664,7631,7497,7421,7324,7182,7179,7147,7120,7130,7146,7158,7184,7166,7097,7134,7051,7080,7132,7108,7230,7239,7233,7247,7241,7235,7207,7230,7241,7269,7338,7305,7361,7380,7291,7358,7406,7444,7360,7512,7524,7386,7382,7378,7299,7201,7165,7182,7153,7216,7306,7431,7565,7669,7735,7758,7753,7738,7651,7550,7577,7537,,,,,7432,7461,7499,7513,7646,7709,7673,7758,7759,7729,7699,7673,7684,7616,7647,7734,7698,7757,7743,7701,7765
71,2018/09/04 23:06:06,0,7748,7738,7672,7656,7564,7440,7381,7230,7176,7166,7125,7124,7139,7153,7172,7189,7111,7121,7104,7032,7133,7106,7176,7248,7227,7247,7241,7242,7218,7215,7241,7245,7316,7330,7311,7400,7319,7323,7380,7447,7393,7407,7545,7459,7381,7379,7356,7257,7165,7182,7168,7167,7254,7357,7488,7610,7700,7753,7758,7749,7721,7582,7536,,,,,7438,7442,7439,7495,7495,7579,7704,7681,7716,7772,7732,7706,7674,7690,7635,7626,7723,7698,7741,7781,7691
72,2018/12/12 07:50:26,1,7395,7355,7482,7518,7369,7447,7381,7309,7357,7366,7311,7325,7247,7238,7208,7233,7241,7247,7229,7246,7134,7128,7068,7083,7120,7127,7188,7160,7145,7127,7126,7171,7177,7309,7423,7534,7653,7679,7756,7710,7741,7780,,,,,,,,,,,,,,,,,,,,,,,,7439,7469,7497,7563,7703,7675,7751,7754,7725,7690,7668,7694,7604,7662,7742,7680,7704,7390,7258,7150,7189,7156,7277
73,2018/12/12 07:56:56,0,7597,7447,7370,7202,7178,7140,7122,7138,7154,7179,7164,7103,7123,7033,7132,7105,7224,7235,7241,7243,7240,7211,7229,7241,7294,7332,7321,7392,7297,7363,7429,7404,7426,7587,,,,,,,,,7579,7408,7365,7396,7299,7160,7183,7169,7167,7276,7390,7553,7668,7749,7761,7754,7721,7583,7566,,,,,7438,7442,7453,7498,7530,7685,7684,7728,7764,7729,7699,7668,7693,7626,7630,7741,7690,7731,7785,7693,7760,7705,7662
74,2018/12/12 08:02:59,1,7705,7664,7545,7448,7422,7350,7288,7287,7284,,7274,7272,7266,7268,,7256,7251,7204,7175,7170,7128,7123,7138,7152,7169,7190,7120,7115,7115,7028,7129,7109,7163,7248,7230,7288,7358,7376,7379,7438,7570,7386,7376,7388,7307,7204,7154,7191,7146,7216,7318,7460,7612,7708,7764,7753,7757,7663,7550,7577,7538,,,,,,,,,,,,,,,,,,,,,,,,,7717,7701,7766
75,2018/12/12 08:18:22,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7473,7498,7515,7665,7694,7709,7770,7732,7706,7670,7687,7646,7613,7733,7703,7684,7760,7693,7785,7756,,,
76,2018/12/12 08:36:04,0,,,,,,,,,,,,,,,,,,,,,,,,,7110,7113,7106,7044,7135,7107,7230,7235,7240,7243,7242,7215,7222,7241,7270,7338,7301,7393,7328,7328,7390,7448,7364,7531,7479,7354,7397,7295,7157,7190,7149,7226,7345,7517,7658,7750,7758,7749,,,,,,,,,,,,,,,,,,,,,,,,,,
<?xml version="1.0" encoding="utf-8"?>
<BlowingFixProfileParam PName="test_pname" Target="7100" Alarm="355" Comp="1" SolveEnable="False" FilmWidth="1000" FilmPosH="70" />
\ No newline at end of file
<BlowingFixProfileParam PName="test_pname" Target="7100" Alarm="213" Comp="1" FilmWidth="1000" FilmPosH="70" MMode="Edge" BagFold0="405" BagFold1="415" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<BlowingFixProfileParam PName="test_pname" Target="7100" Alarm="355" Comp="1" SolveEnable="False" FilmWidth="1000" FilmPosH="70" />
\ No newline at end of file
<BlowingFixProfileParam PName="test_pname" Target="7100" Alarm="213" Comp="1" FilmWidth="1000" FilmPosH="70" MMode="Edge" BagFold0="405" BagFold1="415" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<TDGage OBJ_Port="20005" />
\ No newline at end of file
时间, 出错码,状态,描述
2018/12/5 14:51:57,60,ON,C层 No.1料斗加料异常
2018/12/5 14:51:57,22,ON,A层 搅拌电机报警
2018/12/5 14:52:01,255,ON,称重 PLC连接断开
2018/12/5 18:57:59,60,ON,C层 No.1料斗加料异常
2018/12/5 18:57:59,22,ON,A层 搅拌电机报警
2018/12/5 18:58:02,255,ON,称重 PLC连接断开
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment