This commit is contained in:
ChiKyun Kim
2025-09-23 15:41:16 +09:00
parent 02028afc27
commit b037dd53e6
74 changed files with 4269 additions and 7917 deletions

View File

@@ -10,6 +10,7 @@ using System.Threading.Tasks;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using AR;
using System.Security.Cryptography;
namespace Project.Device
{
@@ -323,7 +324,30 @@ namespace Project.Device
}
}
public bool BSave(int no)
{
var cmd = "BSAVE,{no}";
try
{
ws.Send(cmd + "\r");
return true;
}
catch {
return false;
}
}
public bool BLoad(int no)
{
var cmd = "BLOAD,{no}";
try
{
ws.Send(cmd + "\r");
return true;
}
catch {
return false;
}
}
public void Trigger(bool bOn)
{
//if (IsTriggerOn) return;