Innovenergy_trunk/csharp/App/BmsTunnel/CliPrograms.cs

11 lines
469 B
C#
Raw Normal View History

2023-02-16 12:57:06 +00:00
using CliWrap;
namespace InnovEnergy.App.BmsTunnel;
2023-02-16 12:57:06 +00:00
public static class CliPrograms
{
public static Command LsDBus { get; } = Cli.Wrap("/opt/innovenergy/scripts/lsdbus");
public static Command DBusSend { get; } = Cli.Wrap("/usr/bin/dbus-send");
public static Command StartTty { get; } = Cli.Wrap("/opt/victronenergy/serial-starter/start-tty.sh");
public static Command StopTty { get; } = Cli.Wrap("/opt/victronenergy/serial-starter/stop-tty.sh");
}