Crossbow

MrPLC Admin
  • Content count

    5782
  • Joined

  • Last visited

Posts posted by Crossbow


  1. I think it will be just like working with USB to serial adapters.  Some of them do not implement the entire control set, and things like CTS/RTS are not always connected.  I've used a dozen brands of USB to serial adapters, and of those, only 2 worked on all the PLCs I worked with.  Like pturmel said, it comes down to seeing how the wiring is crossed between the two devices.


  2. You can't directly.  You would need an analog input to read a variable value, and most of those are 0-10V.  You should be able to find some kind of device which can read the battery voltage and output a 0-10V analog signal.  4-20mA would also work.  You will need an appropriate analog input module for the PLC as well.


  3. Not sure you can do what you ask in FX3U.  Look at the options in the software to determine what addresses are reserved for variables created without an address, then look at the info that nehpets shared so you know where it will wind up when you do not specify an address.

    1 person likes this

  4. Extension modules have addresses assigned automatically, and it always starts at a 0.

    FX modules are addressed in OCTAL, so 0-7, then 10-17, then 20-27, etc.

    Q/R modules are addressed in HEX, so 0-F, 10-1F, 20-2F, etc.

    This is clearly explained in the manuals for the PLCs.  You should have reviewed this information before assuming what addresses would be assigned.  You will have a lot of work to clean up anything you wrote before understanding this.


  5. On 8/15/2023 at 8:21 AM, pturmel said:

    Did your old version not have the auto-update tool installed?  If it was there, you wouldn't need to get a trial version, just update directly.

    CX Programmer 1.2 is from around 1999.  No update capability... Current CX-P is like 9.76 or something.

    1 person likes this

  6. Where do you see it listed as incompatible?  In the manuals it clearly lists Windows 10.  I doubt they have any plans to test it for Windows 11.  But I can say I run Windows 11 and have had no problems running CX-Programmer.  


  7. There is also a seconds to time function, SecToTime, if you don't want to use nanoseconds.  The IEC data type TIME is something many HMIs can show but cannot input.

    The motor encoder makes 8,388,608 pulses per revolution.  To work in Inches, select Inches and then put in the number of inches of travel that makes on your conveyor, and all motion and speed will be scaled into inches.  How far the conveyor moves for one shaft rotation should be documented by the company who made it.  You don't need to use the gearbox feature in here, you can always do the math and determine what 1/8 of that rotation is since you said an 8:1 gearbox.  

    It's all a matter of entering the right numbers, pretty simple IMHO.

     

    1 person likes this

  8. 16 hours ago, Shomation said:

    hello

    can anyone help me how can I add NT631C V4.2 in PT list as it is missing and I think the problem is that only 4.1 version is there in PT list 

    I have tried adding registry files but thats not work for me

    any other suggestions and solutions please

     

     

    Are you sure you have a new enough version of software?


  9. On 5/30/2023 at 4:10 AM, AndrejP said:

    @BobLfoot  

    I have different experiences as you. The forums are usually meant to help users to solve their problems FOR FREE.

     

    Help with problems, not do your engineering and write your program for you. You didn't mention a problem, you asked someone to write a program...  If you have a question about your code, show us your work and we can assist.  But system integration costs money.

    Best of luck.


  10. When you make variables in the HMI, you can assign them a default value to be applied on every power up.  There is an option in Synchronize to also initialize the variables.  That is why you see the dialog.

    If none of your HMI variables have default values set, then it does nothing.

    1 person likes this