Weighing: Fix scale L320 for Baden

This commit is contained in:
2024-10-02 10:45:04 +02:00
parent 1d97f3c422
commit 8680e51052
4 changed files with 17 additions and 6 deletions

View File

@ -171,11 +171,11 @@ namespace Tests.WeighingTests {
Thread.Sleep(100);
if (invalid) {
return ("abcd\r\n", false);
return ("abcd", false);
}
bool incr = true;
return ($" {new DateTime(2020, 9, 28, 9, 8, 0):dd.MM.yy HH:mm} {identNr,4} {weight,9}{(unit ? "lb" : "kg")} \r\n", incr);
return ($" {new DateTime(2020, 9, 28, 9, 8, 0):dd.MM.yy HH:mm} {identNr,4} {weight,9}{(unit ? "lb" : "kg")} ", incr);
}
}
}