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 > LinuxCNC (formerly EMC2)


LinuxCNC (formerly EMC2) Discuss LinuxCNC (formerly EMC2) Controlers here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-26-2008, 07:49 AM
 
Join Date: Feb 2006
Location: usa
Posts: 52
Gads is on a distinguished road
HOME LIMIT SETTINGS IN EMC2

HI HAVING DIFFICULTY SETTING UP LIMIT/HOME SETTINGS TO WORK RIGHT
I USE 2 SWITHES IN SERIES ON EACH AXIS AND CANT GET THINGS TO DO WHAT I WANT IN STEPCONFIG. MY AXIS'S MOVE THE RIGHT DIRECTION WHEN JOGGED IN EMC BUT THE HOME ALWAYS GOES THE WRONG DIRECTION AND I HAVE TRIED ASSORTED SETTINGS IN STEP CONFIG. FOR EXAMPLE I HAVE MY X I WANT TO HOME TO THE LEFT SWITCH AND WANT THIS TO BE X0 AND X-LIMIT. TRAVEL IS 15.5, I HAVE SETUP TO BOTH LIMIT, MIN+HOME X, MAX HOME X ETC.. HAVE ALSO SWAPPED SAME AND OPPOSITE SETTINGS BUT THE SYSTEM STILL RESPONDS STRANGLY. I SELECT HOME X AND THE SYTEM TRIES TO GO TO THE + SWITCH.
? DO YOU HAVE TO HOME ON THE PLUS SIDE IN EMC AND WORK G54 ALWAYS BE A NEG VALUE. MANUAL IS VERY BREIF ON THESE SETTINGS AND I COULD USE SOME INPUT
THANKS GADS
Reply With Quote

  #2   Ban this user!
Old 01-26-2008, 12:13 PM
acondit's Avatar  
Join Date: Apr 2005
Location: USA
Posts: 1,774
acondit is on a distinguished road

Originally Posted by Gads View Post
HI HAVING DIFFICULTY SETTING UP LIMIT/HOME SETTINGS TO WORK RIGHT
I USE 2 SWITHES IN SERIES ON EACH AXIS AND CANT GET THINGS TO DO WHAT I WANT IN STEPCONFIG. MY AXIS'S MOVE THE RIGHT DIRECTION WHEN JOGGED IN EMC BUT THE HOME ALWAYS GOES THE WRONG DIRECTION AND I HAVE TRIED ASSORTED SETTINGS IN STEP CONFIG. FOR EXAMPLE I HAVE MY X I WANT TO HOME TO THE LEFT SWITCH AND WANT THIS TO BE X0 AND X-LIMIT. TRAVEL IS 15.5, I HAVE SETUP TO BOTH LIMIT, MIN+HOME X, MAX HOME X ETC.. HAVE ALSO SWAPPED SAME AND OPPOSITE SETTINGS BUT THE SYSTEM STILL RESPONDS STRANGELY. I SELECT HOME X AND THE SYTEM TRIES TO GO TO THE + SWITCH.
? DO YOU HAVE TO HOME ON THE PLUS SIDE IN EMC AND WORK G54 ALWAYS BE A NEG VALUE. MANUAL IS VERY BRIEF ON THESE SETTINGS AND I COULD USE SOME INPUT
THANKS GADS
GADS,

They following is the HAL setup for my home and limit switches for my router (using a CandCNC mini-IO breakout board).
# create a signal for the estop loopback
net estop-ext <= parport.0.pin-10-in-not
net estop-out <= iocontrol.0.user-enable-out
net estop-ext => iocontrol.0.emc-enable-in
net both-home-x <= parport.0.pin-11-in
net both-home-y <= parport.0.pin-12-in
net both-home-z <= parport.0.pin-13-in
net both-home-x => axis.0.neg-lim-sw-in axis.0.pos-lim-sw-in axis.0.home-sw-in
net both-home-y => axis.1.neg-lim-sw-in axis.1.pos-lim-sw-in axis.1.home-sw-in
net both-home-z => axis.2.neg-lim-sw-in axis.2.pos-lim-sw-in axis.2.home-sw-in


And here is what I used in my ini file for the home switch configuration.

#+ First axis
[AXIS_0]

TYPE = LINEAR
HOME = 0.000
MAX_VELOCITY = 2.0
MAX_ACCELERATION = 20.0
STEPGEN_MAXACCEL = 21.0
SCALE = -2000.0
FERROR = 0.05
MIN_FERROR = 0.01
MIN_LIMIT = -38.500
MAX_LIMIT = 38.500
HOME_OFFSET = -0.100
HOME_SEARCH_VEL = -1.250
HOME_LATCH_VEL = 0.250
HOME_USE_INDEX = NO
HOME_IGNORE_LIMITS = YES
HOME_SEQUENCE = 1

#+ Second axis
[AXIS_1]

TYPE = LINEAR
HOME = 0.000
MAX_VELOCITY = 1.5
MAX_ACCELERATION = 20.0
STEPGEN_MAXACCEL = 21.0
SCALE = 2000.0
FERROR = 0.05
MIN_FERROR = 0.01
MIN_LIMIT = -24.000
MAX_LIMIT = 24.000
HOME_OFFSET = -0.100
HOME_SEARCH_VEL = -1.00
HOME_LATCH_VEL = 0.250
HOME_USE_INDEX = NO
HOME_IGNORE_LIMITS = YES
HOME_SEQUENCE = 1

#+ Third axis
[AXIS_2]

TYPE = LINEAR
HOME = 9.295
MAX_VELOCITY = 1.3
MAX_ACCELERATION = 25.0
STEPGEN_MAXACCEL = 26.5
SCALE = 2000.0
FERROR = 0.05
MIN_FERROR = 0.01
MIN_LIMIT = -9.295
MAX_LIMIT = 9.295
HOME_OFFSET = 9.295
HOME_SEARCH_VEL = 1.00
HOME_LATCH_VEL = -0.250
HOME_USE_INDEX = NO
HOME_IGNORE_LIMITS = YES
HOME_SEQUENCE = 0

I don't know that this is the best way to set them up but they do work. I have 2 switches on each axis wired in a loop normally closed. I started out with all six switches wired in one loop but EMC2 would tell me that it tripped all three axii when it hit a limit switch. My X and Y home at zero but my Z homes at the top of its travel.

Hope this helps,
Alan
__________________
http://www.alansmachineworks.com
Reply With Quote

  #3   Ban this user!
Old 01-27-2008, 07:39 AM
 
Join Date: Feb 2006
Location: usa
Posts: 52
Gads is on a distinguished road

acondit Thanks for the info you posted, between that and the info I found in the integrator manual I was able to get things working the way I want. This software
is very strange, I think I have 8 hours into motor/pin config and limit switch settings so far and nothing about any setting has been what you would expect. very trial and error, but you got me going in the right direction anyway.
Thanks to all
Reply With Quote

  #4   Ban this user!
Old 02-11-2008, 10:49 AM
 
Join Date: Feb 2007
Location: USA
Posts: 514
Big John T is on a distinguished road

Originally Posted by Gads View Post
acondit Thanks for the info you posted, between that and the info I found in the integrator manual I was able to get things working the way I want. This software
is very strange, I think I have 8 hours into motor/pin config and limit switch settings so far and nothing about any setting has been what you would expect. very trial and error, but you got me going in the right direction anyway.
Thanks to all
If you use the EMC2 StepConf Wizard from the menu you can be up and running in a couple of minutes... for a basic stepper system.

John
Reply With Quote

  #5   Ban this user!
Old 02-11-2008, 05:20 PM
 
Join Date: Feb 2006
Location: usa
Posts: 52
Gads is on a distinguished road

Hi Big John that is what I thought, come to find out alot of time was spent figuring out
that step config had been worded improperly the motor/leadscrew settings are/where backwards when approached from mechanical point of veiw. I believe samco took the initiative to verify this and has stated in another post of mine that the program will reflect this in the next update. also home/limit settings are confusing at least. it all came down to trial and error and help from folks on this site.
Thanks again all
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 02-13-2008, 05:50 PM
 
Join Date: Feb 2007
Location: USA
Posts: 514
Big John T is on a distinguished road

What is confusing about the home/limit settings?

Perhaps the author can change the wording...

What exactly was the trip up for you?

John
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 On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
EMC2 & Limit Switches acondit LinuxCNC (formerly EMC2) 12 07-20-2007 12:23 PM
Fadal work coords & home settings Shizzlemah Fadal 13 11-08-2006 07:57 PM
EMC2 & Limit Switches pcstru LinuxCNC (formerly EMC2) 0 10-19-2006 11:10 AM
V2XT Quilt limit deceleration settings Spin Bridgeport and Hardinge Mills 0 02-16-2006 09:10 PM
Limit switch settings Stevie TurboCNC 0 05-24-2004 07:16 PM




All times are GMT -5. The time now is 02:59 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