10-17-2006 02:29 PM
10-18-2006 04:10 AM
10-18-2006 08:57 AM
Its LookOut Direct HMI Software. Can you please help me with this?
Thanks,
regards,
Kone
10-19-2006 08:52 PM
10-20-2006 01:09 AM
I am not sure if I understand the question fully. I am guessing you would like LookoutDirect to toggle some bits -- in which case you would just write to these bits from LookoutDirect. This would work fine as long as the PLC isn't overwriting these.
Please post back with more details if I have misunderstood your query.
-Khalid
10-20-2006 12:47 PM
Ya, now im directly establishing connection between 'C' bits and HMI inputs and it works !
Thanks a lot for your support !
I have one more question can u help me convert inputs from decimal to BCD. I have decimal input on the HM screen that has to be converted to BCD when fed to the PLC. How can i do this?
10-23-2006 08:18 AM
@kone wrote:
...
I have one more question can u help me convert inputs from decimal to BCD. I have decimal input on the HM screen that has to be converted to BCD when fed to the PLC. How can i do this?
To convert to BCD with LookoutDirect, just add the :B modifier after your object (e.g. DL250.V2000:B=Pot1) as described in the "Getting Started" manual (Appendix B of the current one).
10-23-2006 02:45 PM
10-24-2006 01:20 PM
ADec2Bcd = sum(mod(000,16),mod(trunc(000/16),16)*10,mod(trunc(trunc(000/16)
/16),16)*100,mod(trunc(trunc(trunc(000/16)/16)/16),16)*1000);
Simply replace the 000 with the value to be converted, can be a numerical object.
10-25-2006 10:40 AM