Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
Use more realistic data
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangyan99 committed Mar 20, 2016
1 parent 9cce97b commit b6381bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/OBDLibrary/ObdShare/ObdUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ public static string GetEmulatorValue(string cmd)
case "010C":
return r.Next(0, 2500).ToString();
case "010D":
return r.Next(20, 120).ToString();
return r.Next(5, 70).ToString();
case "0110":
return r.Next(0, 600).ToString();
return r.Next(0, 50).ToString();
case "0111":
return r.Next(0, 100).ToString();
case "011F":
Expand Down Expand Up @@ -257,4 +257,4 @@ static string SimulateEngineFuelRateValue(Random r)
return variance.ToString();
}
}
}
}

0 comments on commit b6381bb

Please sign in to comment.