49 lines
1011 B
C#
49 lines
1011 B
C#
namespace Common.Hardware.WaterMeter.eRegister.Features
|
|
{
|
|
using System;
|
|
|
|
// TODO: parameters - TBD
|
|
public class SendTestPattern : Pam
|
|
{
|
|
public SendTestPattern() : base(6, SendTestPattern)
|
|
{
|
|
}
|
|
|
|
public Byte Parameter1
|
|
{
|
|
get => this.bytes[1];
|
|
set => this.bytes[1] = value;
|
|
}
|
|
|
|
public Byte Parameter2
|
|
{
|
|
get => this.bytes[2];
|
|
set => this.bytes[2] = value;
|
|
}
|
|
|
|
public Byte Parameter3
|
|
{
|
|
get => this.bytes[3];
|
|
set => this.bytes[3] = value;
|
|
}
|
|
|
|
public Byte Parameter4
|
|
{
|
|
get => this.bytes[4];
|
|
set => this.bytes[4] = value;
|
|
}
|
|
|
|
public Byte Parameter5
|
|
{
|
|
get => this.bytes[5];
|
|
set => this.bytes[5] = value;
|
|
}
|
|
|
|
public Byte Parameter6
|
|
{
|
|
get => this.bytes[6];
|
|
set => this.bytes[6] = value;
|
|
}
|
|
}
|
|
}
|