Jump to content

Joe Tauser

MVP 2023
  • Posts

    2,868
  • Joined

  • Last visited

  • Days Won

    308

Everything posted by Joe Tauser

  1. I was unaware they had changed the board shape, but it does make sense because the old Snap I/O modules had a nasty habit of coming un-clipped from the PLC. So to answer your question - yes, they are not compatible. Unless you get your Dremel tool out and cut the corners off. This is worth noting not just for an upgrade but for a replacement as well. I looked at a V570 I had handy and it's got the little plastic bosses that would create the interference you describe. Joe T.
  2. The question of bits being left on and timers not resetting in subroutines comes up often. Think like the PLC. And understand the underlying Zen of a timer or bit instruction. Here's the bottom line - a bit or a timer must be scanned one more time with a Logical FALSE statement in front if it in order to turn it back off. This is true for most PLC brands. The mistake beginners make that they have a hard time wrapping their head around is thinking the PLC still looks at the bits in the subroutine even though it's not being called. If the the subroutine is not being called, everything in it is frozen in the state it was in when you left. Which means bits are left on and timers are not reset. As Flex says, conditional subroutine calls can be bad ju-ju. Joe T.
  3. Have you written the program to define the user's actions already? You'll need something to trigger the data log. By the term "apprentice" - do you have someone you're working with who knows PLCs and is teaching or are you on your own? Joe T.
  4. Try KORE. https://www.korewireless.com/ Joe T.
  5. Have you tried storing a 0 to the ML you have the encoder mapped to? Joe T.
  6. That is one of my favorite clean-up packages. I bought the portable version and run it off the flash drive I keep in my pocket. Joe T.
  7. You're almost there. A normal coil (or inverted coil) ALWAYS updates it's status in the memory table. If the logic leading up to a regular coil is true, the coil will assume a value of 1. If the logic is false, the coil will go to 0. Just like real relays with springs in them. So the regular coils will get in a fight with the inverted coils in the logic you've shown. Never use the same address twice for a normal coil instruction, as it will assume the state it's tied to in the bottom of the program. Remember that PLCs solve logic from top to bottom. Replace the regular coils with SETs and the inverted coils with RESETs. These coil types on only operate on the memory when they're called, not all the time. Joe T.
  8. Contact support for a remote session - go to support.unitronics.com and get a ticket going. We're just volunteer moderators here - not Unitronics employees. Joe T.
  9. The first thing to check is whether you are running the installation program as Administrator. Joe T.
  10. +1 They are confusing and bad ju-ju. Especially for a beginner. @Nancygogogo - delete these inverted coils from your logic and figure out how to make it work with regular coils, SETs, and RESETs. If you're having trouble look over the Help topic "Coils". Joe T.
  11. Don't run a V120 at 115200 - it doesn't work well. Upgrade to a V130 if you need this baud rate. Joe T.
  12. Don't design something you can't service while the machine is on. You'll regret it, or your field techs will hate you. You have to be able to get to the wiring while it's running. If I'm using a standard enclosure the manufacturer usually offers a flying hinged subpanel kit. I order one smaller than the one I'm using and mount it with standoffs. If you have a machine shop you can easily replicate this functionality. Joe T.
  13. Look at the data sheet for the -E3XB and make sure you have +24V and 0V present in the right places. It sounds like you've lost one or the other. Joe T.
  14. If you changed the alarm texts in the String library you can also change the font size there. If you have more questions please post your .vlp file. Joe T.
  15. You need to separate your networks. You have several networks that have multiple rungs, each of which is a logical statement. There's no memory cost for additional nets- move your logic into pieces. You also have rungs that initialize values, such as Main:Net 3 where you write 50 to SI 104. It's better practice to use the power-up value feature for all of this- This applies to SB 168 and SI 108 as well. In net 2, don't put conditions on the SCAN block. Just put a NC of SB 2 on the rail and hang it from that. I would start by talking to one device at a time first and getting that working. Then we can switch between them. We need to solve the Modbus going to 4 and 5. RS485 can be tricky on the older models such as the V230. You may have to play with moving the terminator resistors around or eliminating them. Make sure you have your RS485 polarity right, too. Even though the official Unitronics documentation shows a terminator at both ends, on these old models I have looked at the signal with a scope and found the terminators attenuate the signal too much. Try removing one or both of the terminators while you're trying to get successful communication. Joe T.
  16. Your Modbus block is timing out. Take a look at this post- Also, post your .vlp file rather than trying to describe your problem. It's much easier to look at your code. Joe T.
  17. The M-210 was discontinued long ago. None of the currently available software supports it. Contact support@unitronics.com - they may be able to help. Joe T.
  18. I'm guessing when you say "a PTC sensor with 2 wires" you are talking about a thermistor. The PT100 input is designed for a 100 ohm DIN RTD - 100 ohms at 0 degrees C, 0.385 ohms/deg C. You'd actually have better luck designing a circuit to provide a voltage or current output based on the specifications of your sensor and the temperature range you are interested in. Joe T.
  19. You're going to have to contact the company that made the machine to fix this. Joe T.
  20. Set up a list of texts by range. If you look at my State Machine example you can directly tie the step pointer to the text display. Joe T. @Jeff164 I (and the other codgers) are always happy to look over and help with code you've written. I was anticipating a "Please send me an example step-by-step" response, and that was not fair to you. I apologize for my un-earned gruffness.
  21. Define "Selector". If you're talking about something like an HOA switch, I've put a graphic by pointer object on the screen and placed small invisible boxes with touch properties right at the corners of the graphic. Then get a picture out of the Unitronics library of the selector in each of the positions. When you touch one of the corners or the center of the graphic, the PLC logic writes a number to an MI corresponding to "Hand", "OFF", or "AUTO". You can then use equal blocks looking at the MI to set coils in your program. No, I'm not going to post an example, yet. If this is something you want to do I want you to try to make it. Then post your code (.vlp file). Also dig into the example projects under the Help menu. There's a lot of good stuff in there. Joe T.
  22. You have to have a copy of the PLC program (the .vlp file) with the data table in it. Do you have this? Joe T.
  23. You're supposed to call SB 80 last (in a separate net) after you've loaded SI 80 .. 84. If you're variable isn't changing fast your code will work fine, it's just kind of backwards. Joe T.
×
×
  • Create New...