11 lines
469 B
C#
11 lines
469 B
C#
|
using CliWrap;
|
||
|
|
||
|
namespace InnovEnergy.App.BmsTunnel;
|
||
|
|
||
|
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");
|
||
|
}
|