How do I enter hexa decimal value in faceplate?
There is a requirement to have "entry field" in a faceplate tab to enter hexa decimal value. Requesting suggestion on how to do this?
Answers
Confirmed as not possible with the current design from a contact I have at R&D.
If you need this functionality, please file an enhancement request with your regional ABB sales representative.
Perhaps you can work around this deficiency by having the PLC receive a regular string and attempt conversion to some numeric representation in 61131-3 application code?
If you need this functionality, please file an enhancement request with your regional ABB sales representative.
Perhaps you can work around this deficiency by having the PLC receive a regular string and attempt conversion to some numeric representation in 61131-3 application code?
by Stefan Stromqvist
Don't think it is possible to do HEX to INT with the built-in conversion functions in PG2.
INT to HEX is possible using Format(...), e.g. "Format("{0:X}",int1" will print int1 as hex string.
Add new comment