This commit is contained in:
atvstdla
2025-09-26 18:15:59 +09:00
parent 54c64a06bd
commit 16da4a5ffa
65 changed files with 5700 additions and 3514 deletions

View File

@@ -326,7 +326,7 @@ namespace Project.Device
public bool BSave(int no)
{
var cmd = "BSAVE,{no}";
var cmd = $"BSAVE,{no}";
try
{
ws.Send(cmd + "\r");
@@ -338,7 +338,7 @@ namespace Project.Device
}
public bool BLoad(int no)
{
var cmd = "BLOAD,{no}";
var cmd = $"BLOAD,{no}";
try
{
ws.Send(cmd + "\r");