Read paremeter


Results 1 to 19 of 19

Thread: Read paremeter

  1. #1
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default Read paremeter

    Hi ,
    I want to some parameter reading and writing to MAcro variable #500

    is it possible and give some sample

    thank you

    Similar Threads:


  2. #2
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    If you just want to write something to #500 like an R-plane or clearance plane thats what I use #500 for. I set #500 at the start of my program.

    O0001(Main program)
    #500=3.--------------(THIS WRITES TO #500)
    .....
    .....
    G0G90G55Z#500------(THIS READS FROM #500)
    .....
    M30

    Once #500 is set it will not change until you change it even you power the machine down it stays.
    #1-#33 are your Local variables and usually cleared when you hit rest or program end code.
    #100-#199 are you common variables and will clear when machine is powered down.
    #500-#999 are your permanent common variables and will not change until you change them.

    Stevo



  3. #3
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default sory

    Sory Wrong writing I want to Machine paramater,

    For example Parameter number

    6712 ; Total number of machined parts
    6711 ; Number of machined parts
    6751 ; Operation time (integrated value of time during automatic operation)

    These parameter write it the
    #500 = Parameter 6712
    #501 = Paramater 6711
    #502 = PArameter 6751 like this please help me



  4. #4
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    Thats no problem. If you want to write the system parameters its like this.

    #500=#6712;
    #501=#6711;
    #502=#6751;

    You can put this anywere you want in the program. This would typically be done at the end of the program. I don't use the parts counters or timers. If they reset at the end of a program or with a certian code then you will want to set it so they add up over and over. For example

    If #6712 is equal to 1 and #500 is equal to 20 for example

    #500=[#500+#6712]-----this would set #500 equal to 21

    Stevo



  5. #5
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default many thanks

    As son as possible I try,


    again thanks



  6. #6
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default Alarm message

    the system parameters not reading machine, Kontrol is give alarm İncorrected adress.

    #500=#6712;
    #501=#6711;
    #502=#6751;


    Please help me



  7. #7
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    What kind of control are you using? Are you sure that these are the correct parameters for what you are looking for? Is there an alarm number given?



  8. #8
    Registered beege's Avatar
    Join Date
    Feb 2008
    Location
    USA
    Posts
    586
    Downloads
    0
    Uploads
    0

    Default

    Don't be too confused. System Parameters are different than System Variables. On my Fanuc 10TF, the System Variables for "clock" are #3001 and #3002, but System Parameters 0100-0106 are various timers.

    First then, what control are you working with? Do you have a manual that describes the System Variables? My manual doesn't list the parts counter or run time variables, but I'm sure they're in there somewhere. Try calling your control's tech support to find the right ones. Once you've found them, you can read them into your macro variables like:

    #500=#3001

    and then perform calculations on those. Good luck!



  9. #9
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    I agree with you beege. Thats why I asked him what control he was on and if he was sure that they were the right parameters. The parameters he is listing above are for the 16,18, and I believe the 21 controls. These are the timers and parts counters. If he is getting an incorrect address I would assume that they are not the correct parameters for the control being used.



  10. #10
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default My Control is 21 itb

    Fanuc 21i tb kontrol sir



  11. #11
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by Osmanselim View Post
    Fanuc 21i tb kontrol sir
    I see that these are the correct parameters for the 16 and 18i control but I do not have a 21i parameter book. I think that they are the same but I am not 100%. Do you have a parameter book to verify that you are using the correct parameters?

    I also have a note in my parameter book that mentions this "option" is it possible that this is an option for the control?

    Can you look at these parameters through the service key and see a value set to them?

    Stevo



  12. #12
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default thank

    I will try
    thank you very much



  13. #13
    Registered
    Join Date
    Nov 2005
    Location
    USA
    Posts
    274
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by Osmanselim View Post
    Sory Wrong writing I want to Machine paramater,

    For example Parameter number

    6712 ; Total number of machined parts
    6711 ; Number of machined parts
    6751 ; Operation time (integrated value of time during automatic operation)

    These parameter write it the
    #500 = Parameter 6712
    #501 = Paramater 6711
    #502 = PArameter 6751 like this please help me

    # of Machined parts #3901
    # of requierd parts #3902
    Current time in hours #3012 Read current time in Hours/Minutes/Seconds - ie: 3:56pm & 25sec = 155625

    I attatched the entire Varible list for Fanuc

    Bluesman

    Attached Files Attached Files


  14. #14
    Member
    Join Date
    Jul 2005
    Location
    Turkiye
    Posts
    54
    Downloads
    0
    Uploads
    0

    Default thank you very much

    thank you very much for your interesting



  15. #15
    Registered
    Join Date
    Feb 2009
    Location
    india
    Posts
    52
    Downloads
    0
    Uploads
    0

    Default

    Can anyone tell me how to read system variables?

    actual i want to display clock on crt monitor how can it be done. i read fanuc manual, i only came to know that #3011,#3012 are variables for clock information. Control is FAnuc O-Tc.

    Do i have to set the bits of any parameter? If yes then which parameter No.? and how to change it?

    How to enable this clock display on CRT? please give me the procedure. i m new to cnc

    Thanks



  16. #16
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    I have attached the procedure on how to look at the counters timers ect. Is this what you’re looking for or are you trying to set the control so you can view the time on the front of the control? I don’t know if there is a parameter to actually view the clock on the front screen. I don’t work much with the Oseries control so I am not very familiar with the fundamentals of it. You might also want to check 911.3 for clocks and counters.

    Stevo

    Attached Thumbnails Attached Thumbnails Read paremeter-counters-pdf  


  17. #17
    Registered
    Join Date
    Mar 2009
    Location
    USA
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default System errow :904

    Helo every one,Iam new. I have a problem with Amada,pega 344,CNC turet punch.That is alarm code :904 . If some one has idea,please help me.Thanks olot



  18. #18
    Registered
    Join Date
    Jun 2008
    Location
    United States
    Posts
    1511
    Downloads
    0
    Uploads
    0

    Default

    Welcome to the group.

    You need to tell us what series control you are using.

    Also just FYI in the future it is always best to start a new thread with the issue that you are having titled to match the problem. This thread is titled “read parameter” and is in the “parametric programming” category asking how to read machine variables. No one is going to think to look in this thread to help you out for an alarm on a punch press.

    My guess is you probably have a Fanuc control on this machine. There is an area for Fanuc controls.
    http://www.cnczone.com/forums/forumdisplay.php?f=304
    just click on the “New Thread” button.

    Stevo



  19. #19
    Registered
    Join Date
    Feb 2009
    Location
    india
    Posts
    52
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by stevo1 View Post
    I have attached the procedure on how to look at the counters timers ect. Is this what you’re looking for or are you trying to set the control so you can view the time on the front of the control? I don’t know if there is a parameter to actually view the clock on the front screen. I don’t work much with the Oseries control so I am not very familiar with the fundamentals of it. You might also want to check 911.3 for clocks and counters.

    Stevo
    Thanks stevo,

    911.3 worked, it displayed the clock on parameter page. Do you have the list for paramaters for this fanuc OT? Can you send it to me? my email ID is primoris.eng@gmail.com



Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


About CNCzone.com

    We are the largest and most active discussion forum for manufacturing industry. The site is 100% free to join and use, so join today!

Follow us on


Our Brands

Read paremeter

Read paremeter