Power |
public void Set( string localFile )
Transfer a Power Correction table to the card and use it forthwith:
using ( ClientAPI client = new ClientAPI() ) { client.Connect( cardIP ); // <--- insert your card's IP address here! client.System.ResetToDefaults(); client.PowerCorrection.Set(corrFileNameOnHost); // // TODO: create and execute list(s) here... // client.Disconnect(); }