Hello Guest it is April 26, 2024, 09:34:05 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Chaoticone

Pages: « 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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 »
201
Mach4 General Discussion / Re: Keep track of OB axis
« on: February 01, 2019, 01:00:37 AM »
Quote
if I have to resort to using Incremental moves, but that would absolutely require me to be able to update the current position of the OB1 axis.

Why? Incremental means you do not care where it is or where it is going. You only care that it goes the distance you tell it to.

The only time you need to go to an abs position is after referencing to line up with whatever slot you want. After that, incremental is all you need.

That previous line is not right. You could go to an ABS position after referencing but even that would still be better being an incremental move. I'm not sure the OB position is updated even after referencing. If not, it's still no problem. The first move will always be the same distance assuming of course it can reference with a reasonable degree of repeatability. If it can't reference with that reasonable degree of repeatability that's the first thing that needs to be fixed. 

You know what tool number it is at. You know what tool number you want to go to. Just do the math. Determine how many slots to go and what direction. Now do an incremental move of that distance in that direction.

202
Mach4 General Discussion / Re: A Aixs Brake
« on: January 29, 2019, 06:39:28 PM »
 :)

No problem, glad it helped.

203
Mach4 General Discussion / Re: Stop a macro and go to the end.
« on: January 29, 2019, 06:38:22 PM »
 :)

Yeah, it is handy.

204
Mach4 General Discussion / Re: A Aixs Brake
« on: January 29, 2019, 11:32:30 AM »
If you want to know if an axis is moving or not get its velocity.

velocity, rc = mc.mcAxisGetVel(
   number mInst,
   number axisId)

Description:
Get the velocity of an axis in user units per min.

205
Mach4 General Discussion / Re: Stop a macro and go to the end.
« on: January 29, 2019, 11:18:32 AM »
Yup, all goes in the macro. Get rid of the m6. at the beginning of the errorOut function name and where it is called.

Code: [Select]
function m6()

local inst = mc.mcGetInstance()
local rc = -40
--local selectedTool = mc.mcToolGetSelected(inst)
--local currentTool = mc.mcToolGetCurrent(inst)
--local maxDown = -4.0000 --Max distance Z will go down in the touch routine
--local rate = 30 --Feed rate the Z will go down in the touch routine
--local safeZ = 0 --Machine coordinates the Z will rapid to after touch move
--
--if selectedTool == currentTool then
-- mc.mcCntlSetLastError(inst, "Current tool == Selected tool so there is nothing to do")
--else
-- --Remove this line if you would not like the Z axis to move
-- --mc.mcCntlGcodeExecute(inst, "G90 G53 G0 Z0.0");--Move the Z axis all the way up
-- mc.mcCntlSetLastError(inst, "Change to tool " .. tostring(selectedTool) .. " and press start to touch off") --Message at beginning of tool change
-- mc.mcCntlToolChangeManual(inst, true) --This will pause the tool change here and wait for a press of cycle start to continue
-- mc.mcToolSetCurrent(inst, selectedTool)
-- mc.mcCntlSetLastError(inst, "Performing touch routine")
-- mc.mcCntlGcodeExecuteWait(inst, string.format("G31 Z%0.4f F%0.4f\nG0 G53 Z%0.4f", tostring(maxDown), tostring(rate), tostring(safeZ)))
-- mc.mcCntlSetLastError(inst, "Touch move complete")
-- mc.mcCntlSetLastError(inst, "Current tool == " .. tostring(selectedTool) .. "   Previous Tool == " .. tostring(currentTool)) --Message that shows after Cycle Start
-- local didStrike, rc = mc.mcCntlProbeGetStrikeStatus(inst)
-- if (didStrike == 1) then
-- --5063 = User position 5073 = Machine position
-- value, rc = mc.mcCntlGetPoundVar(inst, 5063)
-- mc.mcToolSetData(inst, mc.MTOOL_MILL_HEIGHT, selectedTool, value)
-- mc.mcCntlGcodeExecute(inst, string.format("G43 H" .. tostring(selectedTool)))
-- mc.mcCntlSetLastError(inst, string.format("Tool " .. tostring(selectedTool) .. " H offset set to %0.4f", value))
-- else
-- mc.mcCntlSetLastError(inst, "The touch move did not touch so we did not set a tool offset.") --Message that shows after Cycle Start
-- end
--end
--Put this in your macros function
if (rc ~= 0) then
msg = mc.mcCntlGetErrorString(inst, rc) --Get the returned error string
errorOut(msg) --Run the m6.errorOut function passing it the msg parameter
return --Exit the function this is in
end

end

--Add this function
function errorOut(msg)
local inst = mc.mcGetInstance()
mc.mcCntlMacroAlarm(inst, 3, msg)
end

if (mc.mcInEditor() == 1) then
m6()
end

206
Mach4 General Discussion / Re: Stop a macro and go to the end.
« on: January 29, 2019, 10:12:39 AM »
Something like this should be pretty close.

Code: [Select]
--Put this in your macros function
if (rc ~= 0) then
msg = mc.mcCntlGetErrorString(inst, rc) --Get the returned error string
m6.errorOut(msg) --Run the m6.errorOut function passing it the msg parameter
return --Exit the function this is in
end

--Add this function
function m6.errorOut(msg)
local inst = mc.mcGetInstance()
mc.mcCntlMacroAlarm(inst, 3, msg)
end

207
Mach4 General Discussion / Re: Can't set machine position in script
« on: January 25, 2019, 09:30:07 AM »
Quote
With any sort of luck smurph will read this post and he may be able to confirm my interpretation.

Craig is right. No way to set machine coordinates via script (on purpose). Well, unless you get very creative and just want the practice.

208
Mach4 General Discussion / Re: New CV Wizards
« on: January 10, 2019, 01:59:58 PM »
Yeah Mauri, that was a bug in the wizard introduced with Lua 5.3. It's fixed in 4026.

209
 :)

210
Depends on what kind of data is in the custom field you created. A integer, double or string. Looking at the API doc I think it would be this one for a double ........

value, rc = mc.mcToolGetDataExDbl(number mInst, number toolNumber, string fieldName) --This is the explanation of the 3 parameters from the doc

The API call should make you think....... mc.mc Tool Get Data Extended as a double

value, rc = mc.mcToolGetDataExDbl(inst, 2, "Heavy") --This is how it might look in actual use.

Then the 3 parameters are

inst = instance and the manual says its expecting a type number for this parameter
2 = Tool number and its expecting a type number for this parameter
"Heavy" = field Name and it is expecting a type string for this parameter ("" make it a string). 0 = number "0" = string

Pages: « 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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 »