Forum Replies Created
-
AuthorPosts
-
ZeusParticipant你可以在公式里对state进行赋值 代码含义如下
/// <summary>
/// Не определён
/// </summary>
public const int Undefined = 0;
/// <summary>
/// Определён
/// </summary>
public const int Defined = 1;
/// <summary>
/// Архивный
/// </summary>
public const int Archival = 2;
/// <summary>
/// Ошибка в формуле
/// </summary>
public const int FormulaError = 3;
/// <summary>
/// Изменён
/// </summary>
public const int Changed = 4;
/// <summary>
/// Недостоверен
/// </summary>
public const int Unreliable = 5;/// <summary>
/// Аварийное занижение
/// </summary>
public const int LowCrash = 11;
/// <summary>
/// Занижение
/// </summary>
public const int Low = 12;
/// <summary>
/// Нормализация
/// </summary>
public const int Normal = 13;
/// <summary>
/// Завышение
/// </summary>
public const int High = 14;
/// <summary>
/// Аварийное завышение
/// </summary>
public const int HighCrash = 15;/// <summary>
/// Вход разрешён
/// </summary>
public const int InPermitted = 101;
/// <summary>
/// Выход разрешён
/// </summary>
public const int OutPermitted = 102;
/// <summary>
/// Доступ запрещён
/// </summary>
public const int AccessDenied = 103;
/// <summary>
/// Повреждение ШС
/// </summary>
public const int WireBreak = 111;
/// <summary>
/// Снят с охраны
/// </summary>
public const int Disarm = 112;
/// <summary>
/// Поставлен на охрану
/// </summary>
public const int Arm = 113;
/// <summary>
/// Тревога
/// </summary>
public const int Alarm = 114;
ZeusParticipantHi,
It works. Thanks!
ZeusParticipant数据 有value 和status 0代表undefined
ZeusParticipant方便发一下截图么? undefined 是数据的状态
ZeusParticipant欢迎大家积极提问讨论需求
ZeusParticipantWow
That’s great.
I want to donate this project by Alipay.
D you have Alipay?
I only want to do little help for what you have done.
You have done a great job.
I want to do some cooperation with you in China.
May I have your self contact.
The contact here is not timely.
I know we have The jet lag. I won’t disturb When you sleep.-
This reply was modified 4 years, 4 months ago by
Zeus.
ZeusParticipantThe data is from the Modbus simulator I developed before.
ZeusParticipantHi,
That’s great. Thanks.
ZeusParticipantHi,
Could you Change the branch name ‘Questions in Chinese’ to ‘中文问题技术交流’. That would be great.
ZeusParticipantHi,
I see. I will tell you if there are inappropriate statements, advertisements, or spam.
ZeusParticipantHi,
Thanks a lot. Could you give me some authority to manage the branch?
ZeusParticipantHi,
Yes, there are many Chinese people using this project. But they don’t speak English.
I will answer questions if they speak Chinese.
ZeusParticipantHi,
I got a problem running SCADA web V6. The log file is below2021-07-08 16:59:19 [DESKTOP-N1KQU2A][Zeus][ACT] Webstation 6.0.0.0 started
2021-07-08 16:59:19 [DESKTOP-N1KQU2A][Zeus][ERR] Unable to create plugin logic PlgChart. File C:\Users\Zeus\Desktop\SCADA\ScadaWeb\PlgChart.dll not found
2021-07-08 16:59:19 [DESKTOP-N1KQU2A][Zeus][ACT] Loaded plugin PlgMain 6.0.0.0 from file C:\Users\Zeus\Desktop\SCADA\ScadaWeb\PlgMain.dll
2021-07-08 16:59:19 [DESKTOP-N1KQU2A][Zeus][ERR] Unable to create plugin logic PlgScheme. File C:\Users\Zeus\Desktop\SCADA\ScadaWeb\PlgScheme.dll not found
2021-07-08 16:59:24 [DESKTOP-N1KQU2A][Zeus][ACT] The configuration database has been received successfully
2021-07-08 16:59:24 [DESKTOP-N1KQU2A][Zeus][EXC] Error updating configuration:
System.ArgumentOutOfRangeException: Length cannot be less than zero. (Parameter ‘length’)
at System.String.Substring(Int32 startIndex, Int32 length)
at Scada.CnlDataFormatter.FillEnumColors()
at Scada.CnlDataFormatter..ctor(BaseDataSet baseDataSet)
at Scada.Web.Code.WebContext.ExecuteConfigUpdate() in E:\scada-v6\ScadaWeb\ScadaWeb\ScadaWeb\Code\WebContext.cs:line 306
ZeusParticipanthi,
I changed the code.In the DB Export module. If we received the command and we enable current data export. passToClients is always false. and the device could not receive commands. the command is canceled. and only the command type BaseValues.CmdTypes.Binary is handled.
I don’t know why we cancel it if we use DB Export module.
ZeusParticipanthi,
Should I config the input channel to fill the output channel grid with the output channel number?
I checked the DB Export module. I only configured the current data export with SQL below.
INSERT INTO cnldata (datetime, cnlnum, val, stat)
VALUES (:dateTime, :cnlNum, :val, :stat)
The database is Oracle 11g and I changed SQL ‘@val’ to ‘:val’.
My version is 5.8.2 and I don’t find any grid to config the DB Export module output channel settings. -
This reply was modified 4 years, 4 months ago by
-
AuthorPosts