Forum Replies Created
-
AuthorPosts
-
manjey73ParticipantYes, channels are processed several times in one second. Use the built-in formulas once per Second, if available. Or use timers with the necessary delay before adding or subtracting.
manjey73ParticipantWeb – Application Parameters – Plugin Assignments
I don’t know exactly how it is in the English version, but I think you will find it. Replace the chart opening behavior there from the usual default to the ChartsPro
manjey73ParticipantWhen working with a remote server, you need to install and configure a PC with an Administrator and on a remote server for the settings functionality to work correctly. In this case, it is necessary to register only on a remote server, where the plug-in, module or driver will work directly
manjey73ParticipantCopy the plugin according to the folders. Run the Administrator, do download the configuration from the server. You will see all the configuration files in the WEB tree. Open the Plugins section in the WEB tree and connect the required one.
manjey73ParticipantThe plugin is configured for the amount that you need. The question about kits is not quite clear? It starts working in full on one web server without restrictions.
manjey73ParticipantIn version 6
Download the configuration from the server – to get all the configuration files in the project.
Go to the WEB settings in the Administrator, Plugins – enable (connect) the plugin
manjey73ParticipantIt is better to do it through a plugin, for the possibility of transferring later to version 6. But given that version 5 is no longer being developed, you can do it directly, but it will only work in version 5. If you write directly in version 6, then after updates you will have to integrate the code again and again after each update.
manjey73ParticipantNow it is not very convenient, since it is necessary to develop for the Schema Editor in the 5th version, and at the same time make the plugin for the 6th version. It will be easier when the schema editor is ported to the 6th version.
manjey73Participantyou have to copy the configuration between the project folders
manjey73ParticipantIt seems there were publications on the Russian forum. As far as I understand, there is a difficulty only in transferring the database
manjey73ParticipantTip: upgrade to version 6, it is somewhat more flexible
manjey73ParticipantOn the 5th version, there is no channel display as a HEX number, as in the 6th version. Most likely only using ASCII String with the corresponding transformations using formulas.
manjey73ParticipantThen you probably need a trigger to change the channel and specify “Send command” in the command.
And if necessary, use the formula in the command to check the value for the range 0-100 and, if it goes beyond the range, return Double.NaN to cancel the command
manjey73ParticipantTrigger parameters check Value. Edit Value = 15
Command Value = 15
manjey73Participantpublic byte[] NewFreq1() { string tes = Encoding.UTF8.GetString(CmdData); uint teu = uint.Parse(tes)*100; byte[] teb = BitConverter.GetBytes(teu); return new byte[] { 0x00, 0x01, teb[1], teb[0]}; }We use the Binary command type and enter 30 and so on in string mode (not Hex)
-
AuthorPosts