Add more configvars to output

This commit is contained in:
Glax 2024-01-02 18:43:42 +01:00
parent d10a4483ed
commit fa1ceba510

View File

@ -21,6 +21,10 @@ public partial class OSCCollar
configTable.AddRow("Send-Osc-Port", this._config.PortSend.ToString()); configTable.AddRow("Send-Osc-Port", this._config.PortSend.ToString());
configTable.AddRow("Receive-Osc-Port", _portReceive.ToString()); configTable.AddRow("Receive-Osc-Port", _portReceive.ToString());
configTable.AddRow("HTTP-Port", this.OscQueryService?.TcpPort.ToString() ?? ""); configTable.AddRow("HTTP-Port", this.OscQueryService?.TcpPort.ToString() ?? "");
configTable.AddRow("CalibrationX", $"{this._config.CalibrationX}");
configTable.AddRow("CalibrationY", $"{this._config.CalibrationY}");
configTable.AddRow("Stretch Deadzone", $"{this._config.WalkStretchDeadzone}");
configTable.AddRow("Run Stretch", $"{this._config.RunStretch}");
Table variableTable = new Table(); Table variableTable = new Table();
variableTable.AddColumn("OscVar"); variableTable.AddColumn("OscVar");