Forum Replies Created
-
AuthorPosts
-
manjey73
Participantrapidscada_6.4.2_linux_ru\scada\ScadaWeb\config\ – It’s in the installation package.
Make it a habit after installing plugins to open the project and download the data from the server first, then all the configuration files will be copied to your project.
manjey73
Participantcopy the file from the package to your project
manjey73
ParticipantSo far, it is possible to select commands through enumerations. Create an enumeration, and specify it in the Command Format. Get a window with buttons and names from the list. Then use the formula to convert the values 0, 1, 2, etc. into the necessary data.
To display the list, you probably need to make the appropriate element in the schema editor.
manjey73
ParticipantA calendar should be called to enter the time and date.
manjey73
ParticipantOutput script
GetStrDtToUtc(CmdDataStr)
the format of the command “Date and Time”
Input scriptVal()
the format “Date and Time”in table script
public double GetStrDtToUtc(string dt) { SetVal(CnlNum, EncodeDate(DateTime.Parse(dt).ToUniversalTime())); return EncodeDate(DateTime.Parse(dt).ToUniversalTime()); }
manjey73
Participantto enter the time into the channel, with the Time format, an output formula is needed.
manjey73
Participant<Param name=”accessToken” value=”pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw” />
this is possible. Like it’s a demo token, but you need a custom one. If so, then for each client it is necessary to register and receive a token, perhaps then it will be tightened.
I didn’t check it. This is in the map configuration
manjey73
ParticipantI didn’t find it in English. There’s a video showing how to connect the Mimic Editor. In theory, if you create a new project, everything should be spelled out, but check it just in case. I don’t know if you have access to the video. It’s in Russian.
manjey73
ParticipantYou need to read the basics of the C# programming language in order to learn other people’s formulas and write your own.
manjey73
ParticipantThis is probably because the Schema Editor is based on NET Framework 4.7.2 and not on NET Standard. As far as I understand, ARM does not support NET Framework 4
This is one of the reasons for creating the new Mimic Scheme Editor.
manjey73
ParticipantThese are variables for any number of channels that need to be checked. The formula is added to the script table. In the input formula,
TwoChannel(101, 105)
is written, where channel 101 will be chn1 and channel number 105 will be chn2.The chn12 value is returned to the Calculated channel, where you will apply the script
manjey73
ParticipantI assume that the problem is either in dotnet or in the settings of additional Windows components.
The installer doesn’t seem to install dotnet on its own
-
This reply was modified 1 month ago by
manjey73.
manjey73
ParticipantWow. I didn’t expect that there could be so many enumerations. I used Text in SVG when I had an enumeration with omissions in the values. And I used dynamic drawings and a collection to control the output, respectively.
The situation is a little different, but this is how you can work around this problem.
manjey73
Participantthen overload the Agent service.
manjey73
ParticipantAfter changing the agent’s passwords and secret keys, you need to enter them in the agent’s configuration file. See ScadaAgent/Config, and if necessary, you can encrypt the password in the Tools section
-
This reply was modified 1 month ago by
-
AuthorPosts