Forum Replies Created
-
AuthorPosts
-
MikhailModeratorOption 1. Via external database as manjey73 said. See this link.
Option 2. We can develop OPC UA server or Modbus Slave driver for Rapid SCADA by a custom contract.
MikhailModeratorHello,
It’s a good idea to create a one command while testing.
To set 2 bytes register, choose Holding Registers in command properties.
Watch the new video about it.
MikhailModeratorTo do this, you need to create a formula in the Formulas table and use this formula for the output channel. The text would be build using the formula.
Set the output channel number to the command settings in the Auto Control Module.Formula example (not tested):
byte[] MyText() { return System.Text.Encoding.GetBytes("Addr;Subj;Text"); }When you make this formula working, I can explain how to insert channel values.
MikhailModeratorHello,
You should specify a command in your Modbus template. If you share a screenshot of your template after you do this, I can validate it.
August 7, 2019 at 2:42 pm in reply to: Dynamic text change to "error" if chanel value greater than specified value #5810
MikhailModeratorIf sensor returns 65535, set channel data to undefined. Try the formula:
Cnl; Cnl >= 65535 ? 0 : CnlStat
The right part of the formula defines channel status.-
This reply was modified 6 years, 10 months ago by
Mikhail.
August 6, 2019 at 12:05 pm in reply to: Dynamic text change to "error" if chanel value greater than specified value #5796
MikhailModeratorHi,
If channels is displayed as number, you can’t display “Error”. You can display error on a separate text component.August 6, 2019 at 12:05 pm in reply to: Dynamic text change to "error" if chanel value greater than specified value #5797
MikhailModeratorHi,
If channels is displayed as number, you can’t display “Error”. You can display error on a separate text component.
MikhailModeratorHello,
Rightclick the dll file in Windows explorer. I suppose, it is alwasys possible.
August 3, 2019 at 8:08 am in reply to: String dynamic text change according input channel value #5788
MikhailModeratorMake sure that you set format of the input channel to Enum text.
August 3, 2019 at 8:05 am in reply to: String dynamic text change according input channel value #5787
MikhailModeratorHi,
Am I miss something?
May be a little bit. Please provide links to screenshots of the settings you made. And I will check.
MikhailModeratorThank you for the info.
MikhailModeratorHello,
You should rightclick the ModAutoControl.dll and unblock it.
August 1, 2019 at 2:45 pm in reply to: String dynamic text change according input channel value #5781
MikhailModeratorHi,
functiondouble MyFunc() -
This reply was modified 6 years, 10 months ago by
-
AuthorPosts