private bool GetOneOutputStatus(byte value, byte pos) { bool status = false; if (ByteLib.GetBit(value, pos) == 1) { status = true; } return(status); }
private string GetStatusString(byte value, byte pos) { byte bitValue = ByteLib.GetBit(value, pos); if (bitValue == 1) { return("Hi"); } return("Low"); }