CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > CamSoft Products


CamSoft Products Discuss Camsoft PC based CNC controller products here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #25   Ban this user!
Old 10-13-2004, 05:36 PM
 
Join Date: Sep 2004
Location: Australia
Posts: 196
Darc is on a distinguished road

Would someone be able to explain how the multifunction knob works, I've got 3 valves to control where the coolant comes out, but I'm not too sure how to set the parameters for the multifunction knob.
I've managed to set all the other buttons.e.g cw spindle1 slow,cw spindle1 fast,cw spindle2 slow etc etc.
Reply With Quote

Sponsored Links
  #26   Ban this user!
Old 10-13-2004, 06:09 PM
 
Join Date: Sep 2004
Location: Australia
Posts: 196
Darc is on a distinguished road

Also just a quickie with the needle guages, I've got 2 spindles running off the one guage, just with different needle colors, my only question is if I use 1 spindle at a time (either one) the needles work great, but if I use both at the same time and the same speed, when I turn then off (even though I have GAUGE 0:12 in the code for the off switch) it leaves a black line where the needles were, any ideas?
Reply With Quote

  #27  
Old 10-13-2004, 07:42 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,825
HuFlungDung is on a distinguished road

The multifunction knob really doesn't "do" anything. It simply has a user definable number of "positions of rotation" that it can occupy. For each position of the knob that you command, you then write some logic that should execute. I think the number of positions of the knob are defined in setup.

RE: the black line: I don't know, but sometimes you might get screen overwrites like that if the video card is short of memory. It could be something else entirely, I'm just guessing.
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #28   Ban this user!
Old 10-13-2004, 08:02 PM
 
Join Date: Sep 2004
Location: Australia
Posts: 196
Darc is on a distinguished road

I think I can do the logic to be executed for each position, I'm just a bit unsure where I need to enter the logic for the variable \56?
Reply With Quote

  #29   Ban this user!
Old 10-14-2004, 11:06 AM
 
Join Date: Mar 2004
Location: United States
Posts: 36
intrusion is on a distinguished road

HuFlung is absolutely right!

I use the multifunction knob more like a mode selector to raise my Z axis heads. It really doesn't do anything, except store the Nth position of the knob into the variable I assigned to it.

Then when I press a button for which head I want to raise it reads the KNOB variable to determine the current knob position and then in my Button I make a list:

IF \56=1 THEN MACHGO ;;0
IF \56=2 THEN MACHGO ;;;0
IF \56=3 THEN MACHGO ;;;;0

If you wanted to turn on coolant with an I/O relay you would just make a list like mine to check the knob position and use # of the relay number you want to turn on or off.
Reply With Quote

  #30   Ban this user!
Old 10-14-2004, 06:11 PM
 
Join Date: Sep 2004
Location: Australia
Posts: 196
Darc is on a distinguished road

Thanks guys, I'll try entering the logic into the coolant button logic.
Also on another front I've got the machine homing, using the minus limit switches as home switches, it works great (surprisingly) the only problem I'm having is the rotary tables are rotating to a slightly different point each time.
I'm having them home then rotate around **amount to line up parallel to the table, I tried moving the table 20mm then -20mm and it's spot on, so thankfully it's not losing steps.
Is there a recommended type of switch to use for a home switch? Something a bit more accurate than the switch we have on the machine.
Reply With Quote

Sponsored Links
  #31  
Old 10-14-2004, 06:27 PM
Al_The_Man's Avatar
Community Moderator
 
Join Date: Dec 2003
Location: Canada
Posts: 16,532
Al_The_Man is on a distinguished road
Buy me a Beer?

It is never good practice to use only a switch to home any axis, the preferable way is to use the switch initially and then use the marker pulse on the encoder. If you are using steppers without feedback and using only the switch, it can be unpredictable.
There are various native Galil routines that are specific to homing using a switch and/or an encoder, using a switch alone you should make the switch move off the switch and back on to it with a very reduced feedrate.
Al
__________________
CNC, Mechatronics Integration and Machine Design.
“Logic will get you from A to B. Imagination will take you everywhere.”
Albert E.
Reply With Quote

  #32   Ban this user!
Old 10-16-2004, 01:49 AM
 
Join Date: Apr 2003
Posts: 6
Tarak is on a distinguished road

Originally Posted by intrusion
HuFlung is absolutely right!

I use the multifunction knob more like a mode selector to raise my Z axis heads. It really doesn't do anything, except store the Nth position of the knob into the variable I assigned to it.

Then when I press a button for which head I want to raise it reads the KNOB variable to determine the current knob position and then in my Button I make a list:

IF \56=1 THEN MACHGO ;;0
IF \56=2 THEN MACHGO ;;;0
IF \56=3 THEN MACHGO ;;;;0

If you wanted to turn on coolant with an I/O relay you would just make a list like mine to check the knob position and use # of the relay number you want to turn on or off.
I removed the coolant on/off button so I can use only the multi function knob, I wrote the logic so in the 1st position the coolant pump is off and all the coolant valves are closed, the 2nd position the coolant pump & 1st valve opens, 3rd position coolant pump & 2nd valve opens, 4th position the coolant pump and the 3rd valve opens, 5th position coolant pump off and all valves closed. Confused yet?
Should I enter this type of code into the timer file? I'm just a bit unsure because I'm not pressing a button that needs to look at the variable \56.
I just want it to activate when the knob is turned.
Reply With Quote

  #33  
Old 10-16-2004, 10:03 AM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,825
HuFlungDung is on a distinguished road

The multifunction knob can be programmed "to turn" in response to an I/O event. In general terms, I think you will need at least one real hardware switch to make the simplest input. When I used the multifunction knob, I used the inputs from two momentary contact switches to "turn" the multifunction knob by one detent CW in response to one pushbutton, and the other push button for CCW rotation.
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #34   Ban this user!
Old 10-17-2004, 07:24 AM
 
Join Date: Apr 2003
Posts: 6
Tarak is on a distinguished road

Oh well, if I can't use just the multifunction knob I may just have to create 3 buttons, one for each valve.
I was hoping I could use only the multifunction knob, but it would obviously need to monitor the condition all the time as opposed to only looking at it when a seperate button is pressed, thanks anyhoo's.
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Camsoft and Galil WSDK/Terminal squarewave CamSoft Products 7 03-28-2012 07:25 PM
Using Camsoft on a Pratt & Whitney Tapemate C jevs CamSoft Products 22 03-19-2007 06:11 AM
Camsoft and OneCNC CRAZYRICH CamSoft Products 1 01-25-2005 09:25 AM
Using Gauges in CamSoft Steve Etter CamSoft Products 6 11-12-2003 01:58 PM




All times are GMT -5. The time now is 01:45 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361