Skip to content

ngbrown/Mcs3Rob

Repository files navigation

Mcs3Rob

NuGet

A .ROB file parser written in C# for the .NET family of languages. A .ROB file is written in a structured ASCII format to describe the internal electronic control unit (ECU) variables used in measurement and calibration of an engine, such as that in an automotive vehicle.

Downloads

The latest release of Mcs3Rob is available on NuGet.

Usage

using System;
using Mcs3Rob;

void Main()
{
    var parser = new Mcs3Rob.Parser();
    parser.Error += (sender, args) => Console.WriteLine(args.ToString());
    var robFile = parser.Read("cal-file-4345.rob");
}

Contributors

Mcs3Rob is © 2023 Nathan Brown under the MIT license