Sign in to follow this  
Followers 0
Arjan

DL06 LCD Display

4 posts in this topic

Hello, I am using the LCD display that mounts on the DL06 and it works great with the LCD function. I haven't found a way to pick up the arrow keys etc. on the display to interact with the plc. Is anybody aware of a way to do this? I was hoping that the keys would set some bits in the plc memory when pressed. It would allow for changing some values in an userfriendly manner. Thanks, Arjan

Share this post


Link to post
Share on other sites
The D0-06LCD is not a HMI. It is a display. None of the keys can be read by the plc nor can it be used to allow operator input other than by going to the maintenance section and knowing what address to change.

Share this post


Link to post
Share on other sites
That's what I figured. I had some small hope that somebody could prove me wrong.

Share this post


Link to post
Share on other sites
I do not know about proving you wrong, but if you have some spare inputs you can do this. PLC 06 // Rung 1 // Address 0 STRPD X100 STR CT0 CNT CT0 K4 // Rung 2 // Address 5 STRE CTA0 K0 LCD K1 """Slow down timer""" LCD K2 """Time .1 sec "" V400:B" ANDPD X107 ANDN V400 K500 INC V400 // Rung 3 // Address 36 STRE CTA0 K0 ANDPD X106 AND V400 K1 DEC V400 // Rung 4 // Address 43 STRE CTA0 K1 LCD K1 """Warm up time""" LCD K2 """Time .1sec "" V401:B" ANDPD X107 ANDN V401 K9999 INC V401 // Rung 5 // Address 71 STRE CTA0 K1 ANDPD X106 AND V401 K1 DEC V401 // Rung 6 // Address 78 STRE CTA0 K2 LCD K1 """units to run""" LCD K2 """Number "" V402:B" ANDPD X107 ANDN V402 K9999 INC V402 // Rung 7 // Address 104 STRE CTA0 K2 ANDPD X106 AND V402 K1 DEC V402 // Rung 8 // Address 111 STRE CTA0 K3 LCD K1 """Seal timer""" LCD K2 """Time .1 sec "" V403:B" ANDPD X107 ANDN V403 K500 INC V403 // Rung 9 // Address 139 STRE CTA0 K3 ANDPD X106 AND V403 K1 DEC V403 // Rung 10 // Address 146 END // Rung 11 // Address 147 NOP // Rung 12 // Address 148 NOP #BEGIN ELEMENT_DOC "X0","","","E-Stop #1" "X1","","","E-Stop #2" "X2","","","Conveyor VFD Fault" "X3","","","Product Jam Fault" "X4","","","Downstream Equipment Stopped" "X5","","","Low Product Level on Infeed" "X6","","","Auto Run" "X7","","","Reset PB" "X100","","","display (increments display)" "X106","","","dec" "X107","","","inc" "C0","","","Blocker Bit" "C1","","","E-Stop Condition Bit" "C2","","","Product Jam Condition Bit" "CT0","CT0","","display counter" "V400","_v400","","slowdown timer preset" "V401","_v401","","warmup timer preset" "V402","_v402","","product counter preset" "V403","_v403","","seal timer preset" "CTA0","_CTA0","","display counter accumulator" #END

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0