Page 19 of 38 FirstFirst ... 9141516171819202122232429 ... LastLast
Results 271 to 285 of 564
  1. #271
    Join Date
    Mar 2007
    Location
    Melbourne - Mexico
    Posts
    655

    Default

    Joe,

    No that is very unusual as they use the same software. However, did you close spindle talker down before using Mach3, as you could be using the same comm port.

    /M

  2. # ADS
    Google Adsense Advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many





     
  3. #272
    Join Date
    May 2009
    Location
    Gosford,NSW
    Posts
    135

    Default

    Actually they aren't the same s/w. One is written in C++ and is a dll (plugin) by MattyZee and the other is written in visual basic and is an exe (spindle talker) written by my mate Wayne.However what they do is the same.. output hex strings via the Usb port adapter.Matt and I have both posted a replies on the CNC zone where Joe first posted... upshot is that if you can talk via Spindle talker then the plugin should work. Things that need to be checked are comm port settings and .net versions but at least you know the hardware works when you use spindle talker as it is "blind" with no error checking etc and a much more basic app than the plugin.Joe did you get in contact with Matty?

  4. #273
    Join Date
    Oct 2010
    Location
    India
    Posts
    3

    Default

    Thanks Mike, Mark for your replies.

    Mike, Well I double checked if not triple checked if there is a connectivity issue. My understanding is that there is something wrong in the reply my VFD is giving and the plugin is initiating an emergency stop to avoid an accident. Spindle talker does not have this safety feature and so it works.

    Mark, I have contacted Matty over a PM on cnczone. Hope he gets time to review the serial data file. Meanwhile can you ask your mate who designed the spindle talker if he has a manual of some kind to better understand the Huanyang's code structure? He might atleast have some notes made about the codes while he was making Spindle Talker. It be great if he could share the info.

    Joe

  5. #274
    Join Date
    May 2009
    Location
    Gosford,NSW
    Posts
    135

    Default

    I'll have to dig around to find my notes but from memory.. here goes

    say you wanty to set the speed of the VFD to 24000rpm. Then the frequency register has to be set to 400.00 hz. Ignoring the decimal this is 9C 40 Hex (40000 decimal)

    If you go thru the manual to the section on modbus communications you can decifer the write string

    01 05 02 9C 40 the last 2 bytes are the check sum and in this case its D0 3C

    Again running from memory the first byte is a write command the second is which PD the third is how long and the 4th and 5th is the data


    To start the VFD you send

    01 03 01 01 (31 88) .... so (remember ignore the check sum 31 88 as its not a command) Note this is a one byte command

    change PD003 to 01

    to stop

    01 03 01 08 (F1 8E)

    Change PD003 to 08

    Again I warn that this is from memory and I might have things mixed up a bit but you get the idea. The strings are correct though.

  6. #275
    Join Date
    May 2009
    Location
    Gosford,NSW
    Posts
    135

    Default

    I just remembered that in the case of the start and stop commands its not PD locations but control registries.. again refer to the VFD manual and it should become clearer.

    All that spindle talker does is calculate the checksum and send the string . Wayne made a simple interface which sends predetermined strings for sr=tart stop etc but you can manually type in the strings if you want via the advanced mode. It was created as a debugging tool for me and Matty to figure out the strings so unfortunately there is no manual for Spindle Talker.

  7. #276
    Join Date
    Oct 2010
    Location
    India
    Posts
    3

    Default

    Hey Guys!

    Just an update on the issue i had. Matt has fixed the issue and sent me an updated dll. It works Perfect

    I believe Matt is adding some final touches to the dll and testing it. We could expect an official updated release from him soon

    Thanks Mike, Mark for your replies and inputs and a Big Thanks to Matt for taking the time to solve the issue for me.

    Joe

  8. #277
    Join Date
    May 2009
    Location
    Gosford,NSW
    Posts
    135

    Default

    Good to hear Joe!

    I've hopefully fixed an issue I was having... On a fairly regular basis I would loose comms with the VFD which would then initiate an estop. Most of the times it would be after runninga fair bit off code and only at the end when it wanted to stop the spindle would I get the error. Note make sure you enable the stop button on the VFD as it is handy to be able to manually stop the spindle.

    I suspected noise and put supressors on the usb cables etc. However yesterday I read how having a 100ohm terminating resistor across the RS+/RS- signals is usefull at the VFD end to stop reflextions. I'm testing this now and so far having good results.

    Keep you posted

  9. #278
    Join Date
    Sep 2011
    Location
    Auckland, NZ
    Posts
    2

    Default

    Good morning all,
    I am a new member to your forum as of yesterday and have found the content of this thread very helpful. Thank You.

    Like many of you, I have just purchased the HY 1.5KW 80mm spindle motor and Inverter. It also came with a manual full of funny pictures rather than a text I am familiar with, however a quick search on Google solved that problem. I am in the process of putting together a router table of 1200 X 900 mm, (although it is still in it's infancy) and it is my first attempt at anything CNC.

    Without any intent of changing the topic of this thread, I would be interested to know the preffered drive system most of you use. Either Trapazoidal screw thread or rack and pinion. Also what size steppers you are using.

    Looking forward to reading many more informative posts and filling the shed full of swarf soon.

    Stuart

  10. #279
    Join Date
    Feb 2004
    Location
    Oxley, Brisbane
    Age
    79
    Posts
    3,041

    Default

    Hello Stuart and welcome to the forum.

    Your question would completely change the intent of this thread and it would really be much better if you were to re-ask the question as a separate thread.

    Bob Willson

  11. #280
    Join Date
    Sep 2011
    Location
    Auckland, NZ
    Posts
    2

    Default

    Thank You Bob,
    I shall have a search through previous topics to see if the question has already been asked elsewhere. If not, I shall post the question.

    Stuart.

  12. #281
    Join Date
    May 2009
    Location
    Gosford,NSW
    Posts
    135

    Default

    Still getting intermittant lost comms to VFD which result in a need to exit Mach to re establish thought I had cracked it with the terminator resistor.

    Time to crack out the scope (sorry, crow) and have a closer look.

  13. #282
    Join Date
    May 2009
    Location
    Gosford,NSW
    Posts
    135

    Default

    Quick update.. turns out I had a dodgy usb cable. Fingers crossed but so far the quality replacement one has been working with no comms droped flaws.

    Moral of the story... wiring is often the cause of headaches

  14. #283
    Join Date
    Oct 2010
    Location
    melbourne, laverton
    Posts
    1,469

    Default please confirm

    hi every one. can some one please humour me and confirm that. on the no name vfd.....
    as far as supply connections go.
    r is active and s is neutral...
    thanks...

  15. #284
    Join Date
    Feb 2004
    Location
    Oxley, Brisbane
    Age
    79
    Posts
    3,041

  16. #285
    Join Date
    Nov 2008
    Location
    South West WA
    Posts
    58

    Default

    See also bottom of page 12

Similar Threads

  1. Help with Huanyang VFd
    By PsychoPig7 in forum CNC Machines
    Replies: 9
    Last Post: 1st June 2009, 12:52 PM
  2. Computer users
    By Peter R in forum NOTHING AT ALL TO DO WITH WOODWORK
    Replies: 21
    Last Post: 16th October 2004, 10:35 PM
  3. Where have the triton users gone?
    By George in forum TRITON / GMC
    Replies: 3
    Last Post: 4th April 2000, 05:28 PM

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
  •