b.k.n.

MrPLC Member
  • Content count

    34
  • Joined

  • Last visited

Everything posted by b.k.n.

  1. Omron RECV ETN21 to EIP21

    I have done those kind of exchanges and it works great. Here is two snips of how I have it set. I would think yours should work maybe should set your Response Monitor Time...
  2. Convert between Real and LReal

    Thanks a lot that was what I was looking for! I had been looking at the wrong place. Was looking in the Instructions and ST statement Reference manual...
  3. I'm new to the NJ series. How would you go about converting back and forth between Real data and LReal?
  4. HMI view/control on smart phone or tablet

    Indusoft has some nice options. Also check out Weintek's CMT-SVR/Easy Access 2.0 it is very nice, cost effective and deploys easily. With the Easy Access 2.0 it takes care of you security for remote access over the WAN. Then you hopefully don't need to hassle IT which is nice.
  5. Revert to home page

    Is there a way to make so after there is no user activity on a HMI for a certain length of time that it will switch back to another page? I have a macro here I am running every second that is watching for page changes. But obviously changing pages isn't the the only user activity there is. 'clear the counter when not one page If($SW0==BCD(65)) $W150=0; EndIf 'Increment Counter If ($SW0<>BCD(65)) $W150=$W150+1; EndIf If ($W150>10) $SW0=BCD(65); EndIf  
  6. How to use plc clock in programming

    Thanks i agree easier way thanks. Now i have one question am I correct that if i mask it with #FF00 and for example if AR19 = #1925 the results in DM0 would be #1900. I would tend to think most people would like those results over in the right two digits and not the left two. I guess you could divide DM0 by 100 and get them moved over to the right two digits. Let me know if I'm wrong and thanks again for that ANDW idea.
  7. How to use plc clock in programming

    You might want to check out the MOVD instruction in case you want the format different. For example if you would like the hour to be first and then the minute be last in the word. Or if you would like to just have the minute only or hour only displayed in a word. The example i have would transfer just the hour into DM0.
  8. KEEP madness

    yes code after the SBN/RET "sub entry" instructions will be ignored. Now you can have a SBN/RET one after the next but code not in a sub entry will be ignored. See the instruction reference manual.