Forum Replies Created
-
AuthorPosts
-
August 23, 2024 at 9:48 am in reply to: Modbus TCP No sending command for write new value to slave device #15217
MikhailModeratorNow it’s more clear.
When you send a command:
Command number – keep by default, it’s not used when the command code is set.
Command code – the code from the Modbus template.Could you make a screenshot of the Modbus template with the selected register to which you send commands?
-
This reply was modified 1 year, 4 months ago by
Mikhail.
MikhailModeratorChannel 101 is the source channel.
Channel 102 formula:EveryMin(() => IncIfOn(101, 103))
Channel 103 stores the cumulative value.
Channels 102 and 103 of the Calculated type.Add to the Scripts table
public CnlData IncIfOn(int cnlNum1, int cnlNum2) { if (Val(cnlNum1) > 0) SetData(cnlNum2, Val(cnlNum2) + 1, 1); return CnlData.Empty; }Note: the above is not tested.
August 22, 2024 at 9:53 am in reply to: version about ScadaSchemeEditor not match between source code and setup #15206
MikhailModeratorIt’s in the develop branch https://github.com/RapidScada/scada/tree/develop/ScadaWeb/ScadaScheme
MikhailModeratorAre there any other ways I can support your work, or is there a donation option available?
In addition to the above:
Donations are appreciated. Please text us by email to make a donation.You can also help us with translation into Chinese. There are Chinese language files in the language pack. If you find errors in those files, please send us an updated version, so we can include it in the language pack.
MikhailModeratorWhen you done, please post here links to Bilibili.
August 22, 2024 at 9:45 am in reply to: Modbus TCP No sending command for write new value to slave device #15203
MikhailModeratorTo check the communication line log, navigate to Line Stats – Line Log, or find the file lineXXX.log
Then find in the log a moment when you send a command.
MikhailModeratorHi,
If the channel 101 changes not too often, you can measure it’s value every minute. If it’s 1, increase the channel 102. Does this method fit your needs?
August 21, 2024 at 11:25 am in reply to: Modbus TCP No sending command for write new value to slave device #15193
MikhailModeratorAlso check the communication line log after sending a command to get a error message.
Please provide a screenshot of the Modbus template.August 21, 2024 at 11:23 am in reply to: version about ScadaSchemeEditor not match between source code and setup #15192
MikhailModeratorThat’s true.
New Scheme Editor for version 6 is under development.
Check the version history.
MikhailModeratorMany developers in China are unable to access YouTube due to network restrictions. To help them, I kindly request permission to upload the RapidSCADA 6.0 video tutorials to Bilibili, a popular video platform in China.
I assure you that all copyrights will be respected. The original content will remain unaltered, and full credit will be given to RapidSCADA, including links back to the original videos.
Yes, you can upload the videos providing the original links.
Is there an option to download videos from Youtube automatically and upload to another hosting?
MikhailModeratorBackward compatibility is provided for data archives.
You need to update all files, not only binaries.
MikhailModeratorit asks me in addition to the IP address and port of the server, the address of the device (from 1 to 247) and the number of the register.
Default TCP port is 502 for Modbus. Address is 0 in your settings. But I suggest to change it to 1. Register addresses are shown in the Modbus template on your screenshot.
MikhailModeratorHi,
Thank you for your positive feedback.
I strongly recommend to upgrade to Rapid SCADA 6. We significantly improved Modbus Slave driver to make it easier to configure. Is it possible for you to upgrade and then discuss the up to date version?-
This reply was modified 1 year, 5 months ago by
Mikhail.
MikhailModeratorHi,
Server 5 and Server 6 must use different TCP ports to be able to work in parallel. Client applications should connect to a proper TCP port.
MikhailModeratorHi,
does updating from 6.1 to 6.3 require data imigration ?
Projects are compatible. Project migration is not needed.
How to pack souce rapidscada code project to installation .exe file setup ?
Build the source code according to the instructions. Then copy the files from your build output to the necessary folders.
-
This reply was modified 1 year, 4 months ago by
-
AuthorPosts