first commit

main
syneffort 1 year ago
parent 25d51a396a
commit 86f7a3921b
  1. 25
      ModbusTester/ModbusTester.sln
  2. 6
      ModbusTester/ModbusTester/App.config
  3. 22
      ModbusTester/ModbusTester/App.xaml
  4. 17
      ModbusTester/ModbusTester/App.xaml.cs
  5. 98
      ModbusTester/ModbusTester/MainWindow.xaml
  6. 126
      ModbusTester/ModbusTester/MainWindow.xaml.cs
  7. 111
      ModbusTester/ModbusTester/ModbusTester.csproj
  8. 53
      ModbusTester/ModbusTester/Model/DataModel.cs
  9. 250
      ModbusTester/ModbusTester/Model/ModbusModel.cs
  10. 55
      ModbusTester/ModbusTester/Properties/AssemblyInfo.cs
  11. 71
      ModbusTester/ModbusTester/Properties/Resources.Designer.cs
  12. 117
      ModbusTester/ModbusTester/Properties/Resources.resx
  13. 30
      ModbusTester/ModbusTester/Properties/Settings.Designer.cs
  14. 7
      ModbusTester/ModbusTester/Properties/Settings.settings
  15. BIN
      ModbusTester/ModbusTester/Resources/Logo.png
  16. 4
      ModbusTester/ModbusTester/packages.config

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34511.84
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModbusTester", "ModbusTester\ModbusTester.csproj", "{D99D07AC-3477-4DEB-9B02-A2EA30996ED3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D99D07AC-3477-4DEB-9B02-A2EA30996ED3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D99D07AC-3477-4DEB-9B02-A2EA30996ED3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D99D07AC-3477-4DEB-9B02-A2EA30996ED3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D99D07AC-3477-4DEB-9B02-A2EA30996ED3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {115AF6A3-8669-4F9F-AB65-52AC409AB907}
EndGlobalSection
EndGlobal

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>

@ -0,0 +1,22 @@
<Application x:Class="ModbusTester.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ModbusTester"
StartupUri="MainWindow.xaml">
<Application.Resources>
<SolidColorBrush x:Key="primary1">#d4eaf7</SolidColorBrush>
<SolidColorBrush x:Key="primary2">#b6ccd8</SolidColorBrush>
<SolidColorBrush x:Key="primary3">#3b3c3d</SolidColorBrush>
<SolidColorBrush x:Key="accent1">#71c4ef</SolidColorBrush>
<SolidColorBrush x:Key="accent2">#00668c</SolidColorBrush>
<SolidColorBrush x:Key="text1">#1d1c1c</SolidColorBrush>
<SolidColorBrush x:Key="text2">#313d44</SolidColorBrush>
<SolidColorBrush x:Key="bg1">#fffefb</SolidColorBrush>
<SolidColorBrush x:Key="bg2">#f5f4f1</SolidColorBrush>
<SolidColorBrush x:Key="bg3">#cccbc8</SolidColorBrush>
<SolidColorBrush x:Key="traffic_red">orangeRed</SolidColorBrush>
<SolidColorBrush x:Key="traffic_yellow">#ffdf80</SolidColorBrush>
<SolidColorBrush x:Key="traffic_green">#a5d46a</SolidColorBrush>
</Application.Resources>
</Application>

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace ModbusTester
{
/// <summary>
/// App.xaml에 대한 상호 작용 논리
/// </summary>
public partial class App : Application
{
}
}

@ -0,0 +1,98 @@
<Window x:Class="ModbusTester.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ModbusTester"
xmlns:vm="clr-namespace:ModbusTester.Model"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.DataContext>
<vm:DataModel/>
</Window.DataContext>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="50"/>
<RowDefinition Height="40"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0" FontFamily="Malgun Gothic" FontSize="30" FontWeight="Bold" Foreground="{StaticResource text1}"
Content="MODBUS TESTER"/>
<Image Grid.Column="2" Source="/PMSModbusTester;component/Resources/Logo.png" RenderOptions.BitmapScalingMode="HighQuality" Margin="5"/>
</Grid>
<StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" Margin="5">
<Label x:Name="lblStatus" Margin="0 0 10 0" Width="30" Height="15" Background="{StaticResource traffic_red}" BorderBrush="LightGray" BorderThickness="1"/>
<Label Content="IP:" Margin="0 0 10 0" VerticalAlignment="Center"/>
<TextBox Text="{Binding IP, Mode=TwoWay}" VerticalAlignment="Center" HorizontalContentAlignment="Center" Width="150" Margin="0 0 10 0"/>
<Label Content="Interval[s]:" Margin="0 0 10 0" VerticalAlignment="Center"/>
<TextBox Text="{Binding Interval, Mode=TwoWay}" VerticalAlignment="Center" HorizontalContentAlignment="Center" Width="50" Margin="0 0 10 0"/>
<ToggleButton x:Name="tbtConnect" Content="Connect" VerticalAlignment="Center" Width="100" Margin="0 0 10 0"
Checked="tbtConnect_Checked" Unchecked="tbtConnect_Unchecked"/>
</StackPanel>
<Grid Grid.Row="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Vertical" Margin="10">
<StackPanel Orientation="Horizontal" Margin="0 0 0 10">
<TextBlock Text="IP:" Margin="0 0 10 0"/>
<TextBlock Text="{Binding IP}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0 0 0 10">
<TextBlock Text="Interval:" Margin="0 0 10 0"/>
<TextBlock Text="{Binding Interval}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0 0 0 10">
<TextBlock Text="Flow Rate (Config.):" Margin="0 0 10 0"/>
<TextBlock Text="{Binding ConfigFlowrate}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0 0 0 10">
<TextBlock Text="Flow Rate (Actual.):" Margin="0 0 10 0"/>
<TextBlock Text="{Binding ActualFlowrate}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0 0 0 10">
<TextBlock Text="Number of channel:" Margin="0 0 10 0"/>
<TextBlock Text="{Binding NumberOfChannel}"/>
</StackPanel>
</StackPanel>
<DataGrid x:Name="grdMain" Grid.Column="1" IsReadOnly="True" AlternationCount="2" Background="{StaticResource bg1}"
BorderBrush="Transparent" BorderThickness="0" Margin="10"
HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"
AutoGenerateColumns="False" TextBlock.TextAlignment="Center"
ItemsSource="{Binding Data}">
<DataGrid.ColumnHeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="HorizontalContentAlignment" Value="Center"/>
</Style>
</DataGrid.ColumnHeaderStyle>
<DataGrid.RowStyle>
<Style TargetType="DataGridRow">
<Style.Triggers>
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
<Setter Property="Background" Value="{StaticResource primary1}"/>
</Trigger>
</Style.Triggers>
</Style>
</DataGrid.RowStyle>
<DataGrid.Columns>
<DataGridTextColumn Header="Channel" Width="Auto" Binding="{Binding Name}"/>
<DataGridTextColumn Header="Time stamp" Width="Auto" Binding="{Binding TimeStamp, StringFormat={}{0:yyyy-MM-dd HH:mm:ss}}"/>
<DataGridTextColumn Header="Cummulative raw" Width="Auto" Binding="{Binding CummulativeRaw}"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Grid>
</Window>

@ -0,0 +1,126 @@
using ModbusTester.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace ModbusTester
{
/// <summary>
/// MainWindow.xaml에 대한 상호 작용 논리
/// </summary>
public partial class MainWindow : Window
{
private ModbusModel _pmsModbus;
private DataModel _pmsData;
public MainWindow()
{
InitializeComponent();
InitInstance();
}
private void InitInstance()
{
_pmsModbus = new ModbusModel();
_pmsModbus.OnConnectionChanged += _pmsModbus_OnConnectionChanged;
_pmsModbus.OnSendDataChanged += _pmsModbus_OnSendDataChanged;
_pmsModbus.OnReceiveDataChanged += _pmsModbus_OnReceiveDataChanged;
_pmsModbus.OnDataRead += _pmsModbus_OnDataRead;
_pmsModbus.Port = 502;
_pmsData = DataContext as DataModel;
}
private void _pmsModbus_OnDataRead(object sender, DataModel e)
{
Application.Current.Dispatcher.Invoke(() =>
{
DataContext = e;
_pmsData = DataContext as DataModel;
});
}
private string GetDataString(float[] data)
{
string result = "";
foreach (float item in data)
{
result += $"{item.ToString("N2")}, ";
}
return result;
}
private void _pmsModbus_OnReceiveDataChanged(object sender, byte[] e)
{
}
private void _pmsModbus_OnSendDataChanged(object sender, byte[] e)
{
}
private void _pmsModbus_OnConnectionChanged(object sender, bool e)
{
Application.Current.Dispatcher.Invoke(() =>
{
if (_pmsModbus.IsConnected == true)
{
lblStatus.Background = (SolidColorBrush)Application.Current.FindResource("traffic_green");
tbtConnect.IsChecked = true;
}
else
{
lblStatus.Background = (SolidColorBrush)Application.Current.FindResource("traffic_red");
tbtConnect.IsChecked= false;
}
});
}
private void SetModbus()
{
_pmsModbus.IP = _pmsData.IP;
_pmsModbus.Interval = _pmsData.Interval;
}
private void tbtConnect_Checked(object sender, RoutedEventArgs e)
{
try
{
SetModbus();
_pmsModbus.Connect();
}
catch (Exception ex)
{
tbtConnect.IsChecked = false;
MessageBox.Show($"Error: {ex.Message}");
}
}
private void tbtConnect_Unchecked(object sender, RoutedEventArgs e)
{
try
{
_pmsModbus.Disconnect();
}
catch (Exception ex)
{
tbtConnect.IsChecked = true;
MessageBox.Show($"Error: {ex.Message}");
}
}
}
}

@ -0,0 +1,111 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D99D07AC-3477-4DEB-9B02-A2EA30996ED3}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>PMSModbusTester</RootNamespace>
<AssemblyName>PMSModbusTester</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="EasyModbus, Version=5.6.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\EasyModbusTCP.5.6.0\lib\net40\EasyModbus.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="Model\DataModel.cs" />
<Compile Include="Model\ModbusModel.cs" />
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModbusTester.Model
{
public class DataModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public string IP { get; set; }
public int Interval { get; set; }
public float ConfigFlowrate { get; set; }
public float ActualFlowrate { get; set; }
public int NumberOfChannel { get; set; }
private ObservableCollection<PMSChannelData> _data;
public ObservableCollection<PMSChannelData> Data
{
get { return _data; }
set
{
_data = value;
OnPropertyChanged(nameof(Data));
}
}
public DataModel()
{
IP = "200.200.200.200";
Interval = 60;
_data = new ObservableCollection<PMSChannelData>();
}
private void OnPropertyChanged(string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
public class PMSChannelData
{
public string Name { get; set; }
public DateTime TimeStamp { get; set; }
public int CummulativeRaw { get; set; }
}
}

@ -0,0 +1,250 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Timers;
using EasyModbus;
namespace ModbusTester.Model
{
public class ModbusModel
{
private readonly int COIL_ADDR_DATA_SAMPLING = 1 - 1;
private readonly int COIL_ADDR_DATA_AVAILABLE = 2 - 1;
private readonly int COIL_ADDR_DATA_CLEAR = 3 - 1;
private readonly int HOLDING_RESISTER_SAMPLING_INTERVAL = 3 - 1;
private readonly int HOLDING_RESISTER_TARE_TIME = 4 - 1;
private readonly int HOLDING_RESISTER_REPEAT_COUNT = 5 - 1;
private readonly int INPUT_RESISTER_CONFIG_FLOW_RATE = 13 - 1; // length: 2
private readonly int INPUT_RESISTER_FLOW_RATE = 222 - 1; // length: 2
private readonly int INPUT_RESISTER_ADDR_NUM_OF_CHANNEL = 227 - 1; // length: 1
private readonly int INPUT_RESISTER_CHANNEL_SIZE_START = 17 - 1; // length: 2 for each
private readonly int INPUT_RESISTER_CHANNEL_START = 229 - 1; // length: 2 for each
private ModbusClient _master;
private Timer _timer;
public string IP { get; set; }
public int Port { get; set; }
public int Interval { get; set; }
public bool? IsConnected { get { return _master?.Connected; } }
public event EventHandler<bool> OnConnectionChanged;
public event EventHandler<byte[]> OnSendDataChanged;
public event EventHandler<byte[]> OnReceiveDataChanged;
public event EventHandler<DataModel> OnDataRead;
public ModbusModel()
{
Port = 502;
_master = new ModbusClient();
_master.ReceiveDataChanged += _master_ReceiveDataChanged;
_master.SendDataChanged += _master_SendDataChanged;
_master.ConnectedChanged += _master_ConnectedChanged;
_timer = new Timer();
_timer.Interval = 1000;
_timer.Elapsed += _timer_Elapsed;
_timer.Stop();
}
private void _timer_Elapsed(object sender, ElapsedEventArgs e)
{
if (_master == null || !_master.Connected)
return;
// data available check
bool available = _master.ReadCoils(COIL_ADDR_DATA_AVAILABLE, 1)[0];
if (!available)
return;
// get data
ReadData();
// pop queued data
_master.WriteSingleCoil(COIL_ADDR_DATA_AVAILABLE, false);
}
private void _master_ConnectedChanged(object sender)
{
if (OnConnectionChanged != null)
OnConnectionChanged(this, _master.Connected);
if (_master.Connected)
_timer.Start();
else
_timer.Stop();
}
private void _master_SendDataChanged(object sender)
{
if (OnSendDataChanged != null)
OnSendDataChanged(this, _master.sendData);
}
private void _master_ReceiveDataChanged(object sender)
{
if (OnReceiveDataChanged != null)
OnReceiveDataChanged(this, _master.receiveData);
}
public void Connect()
{
Disconnect();
_master.IPAddress = IP;
_master.Port = Port;
_master.UnitIdentifier = 1;
_master.Connect();
// clear queue
_master.WriteSingleCoil(COIL_ADDR_DATA_CLEAR, true);
// write interval
_master.WriteSingleRegister(HOLDING_RESISTER_SAMPLING_INTERVAL, Interval);
// write tare
_master.WriteSingleRegister(HOLDING_RESISTER_TARE_TIME, 0);
// set repeat count
_master.WriteSingleRegister(HOLDING_RESISTER_REPEAT_COUNT, 0);
// read basic information
ReadData();
// Sampling Start
StartSampling();
}
public void Disconnect()
{
if (!_master.Connected)
return;
StopSampling();
_master.Disconnect();
}
public void StartSampling()
{
if (_master == null || !_master.Connected)
return;
// coil check
bool samping = _master.ReadCoils(COIL_ADDR_DATA_SAMPLING, 1)[0];
if (!samping)
_master.WriteSingleCoil(COIL_ADDR_DATA_SAMPLING, true);
}
public void StopSampling()
{
if (_master == null || !_master.Connected)
return;
// coil check
bool samping = _master.ReadCoils(COIL_ADDR_DATA_SAMPLING, 1)[0];
if (samping)
_master.WriteSingleCoil(COIL_ADDR_DATA_SAMPLING, false);
}
public DataModel ReadData()
{
if (_master == null || !_master.Connected)
return null;
// interval
int interval = _master.ReadHoldingRegisters(HOLDING_RESISTER_SAMPLING_INTERVAL, 1)[0];
// config flowrate
int[] configFlowratePacket = _master.ReadInputRegisters(INPUT_RESISTER_CONFIG_FLOW_RATE, 2);
float configFlowrate = ConvertHighLowToFloat(configFlowratePacket)[0];
// actual flowrate
int[] acturalFlowratePacket = _master.ReadInputRegisters(INPUT_RESISTER_FLOW_RATE, 2);
float acturalFlowrate = ConvertHighLowToFloat(acturalFlowratePacket)[0];
// channel data
DateTime now = DateTime.Now;
int channelLength = _master.ReadInputRegisters(INPUT_RESISTER_ADDR_NUM_OF_CHANNEL, 1)[0];
int[] channetSizePacket = _master.ReadInputRegisters(INPUT_RESISTER_CHANNEL_SIZE_START, channelLength * 2);
int[] channelDataPacket = _master.ReadInputRegisters(INPUT_RESISTER_CHANNEL_START, channelLength * 2);
// channel data converting
int[] channelSizeData = ConvertHighLowToInt(channetSizePacket);
int[] channelData = ConvertHighLowToInt(channelDataPacket);
PMSChannelData[] data = new PMSChannelData[channelData.Length];
for (int i = 0; i < channelData.Length; i++)
{
data[i] = new PMSChannelData()
{
Name = $"Ch{i + 1} ({channelSizeData[i]})",
TimeStamp = now,
CummulativeRaw = channelData[i]
};
}
DataModel read = new DataModel()
{
IP = IP,
Interval = interval,
ConfigFlowrate = configFlowrate,
ActualFlowrate = acturalFlowrate,
NumberOfChannel = channelLength,
Data = new ObservableCollection<PMSChannelData>(data)
};
if (OnDataRead != null)
OnDataRead(this, read);
return read;
}
private float[] ConvertHighLowToFloat(int[] input)
{
if (input.Length % 2 != 0)
throw new ArgumentException("Input array is not even.");
float[] output = new float[input.Length / 2];
for (int i = 0; i < input.Length; i += 2)
{
ushort high = (ushort)input[i];
ushort low = (ushort)input[i + 1];
// big-endian to little-endian
byte[] bytes = BitConverter.GetBytes(low).Concat(BitConverter.GetBytes(high)).ToArray();
float convertedValue = BitConverter.ToSingle(bytes, 0);
output[i / 2] = convertedValue;
}
return output;
}
private int[] ConvertHighLowToInt(int[] input)
{
if (input.Length % 2 != 0)
throw new ArgumentException("Input array is not even.");
int[] output = new int[input.Length / 2];
for (int i = 0; i < input.Length; i += 2)
{
ushort high = (ushort)input[i];
ushort low = (ushort)input[i + 1];
// big-endian to little-endian
byte[] bytes = BitConverter.GetBytes(low).Concat(BitConverter.GetBytes(high)).ToArray();
int convertedValue = BitConverter.ToInt32(bytes, 0);
output[i / 2] = convertedValue;
}
return output;
}
}
}

@ -0,0 +1,55 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해
// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
// 이러한 특성 값을 변경하세요.
[assembly: AssemblyTitle("PMSModbusTester")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("PMSModbusTester")]
[assembly: AssemblyCopyright("Copyright © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에
// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
[assembly: ComVisible(false)]
//지역화 가능 애플리케이션 빌드를 시작하려면 다음을 설정하세요.
//.csproj 파일의 <UICulture>CultureYouAreCodingWith</UICulture>
//<PropertyGroup> 내부. 예를 들어 미국 영어를 사용하는 경우
//사용하는 경우 <UICulture>를 en-US로 설정합니다. 그런 다음 아래
//NeutralResourceLanguage 특성의 주석 처리를 제거합니다. 아래 줄의 "en-US"를 업데이트하여
//프로젝트 파일의 UICulture 설정과 일치시킵니다.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //테마별 리소스 사전의 위치
//(페이지 또는 응용 프로그램 리소스 사진에
// 리소스가 없는 경우에 사용됨)
ResourceDictionaryLocation.SourceAssembly //제네릭 리소스 사전의 위치
//(페이지 또는 응용 프로그램 리소스 사진에
// 리소스가 없는 경우에 사용됨)
)]
// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
//
// 주 버전
// 부 버전
// 빌드 번호
// 수정 버전
//
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

@ -0,0 +1,71 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 이 코드는 도구를 사용하여 생성되었습니다.
// 런타임 버전:4.0.30319.42000
//
// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
// 이러한 변경 내용이 손실됩니다.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ModbusTester.Properties
{
/// <summary>
/// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
/// </summary>
// 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
// 클래스에서 자동으로 생성되었습니다.
// 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여
// ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PMSModbusTester.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
/// 재정의합니다.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ModbusTester.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="EasyModbusTCP" version="5.6.0" targetFramework="net48" />
</packages>
Loading…
Cancel
Save