Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens committed Nov 21, 2023
1 parent 0d371fb commit 60c0eea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void PostValues(params string[] values)
{
data += "&";
}
data += "field" + (index + 1).ToString() + "=" + values[index];
data += "field" + (index + 1) + "=" + values[index];
}
PostData(data);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void TestSevenSegment(SevenSegment sevenSegment)
{
if (character != SevenSegment.CharacterType.count)
{
Resolver.Log.Info($"Character: {character.ToString()}");
Resolver.Log.Info($"Character: {character}");
sevenSegment.SetDisplay(character, showDecimal);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ void Initialize()

SerialNumber = string.Empty;
foreach (var b in serialNumber)
{
SerialNumber = SerialNumber + " " + b.ToString("X2");
}

ushort[] eeMLX90640 = new ushort[832];

Expand Down

0 comments on commit 60c0eea

Please sign in to comment.