Hello Guest it is April 26, 2024, 05:18:22 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 »
241
Mach4 General Discussion / Re: My File is running real slow
« on: April 12, 2018, 05:37:53 PM »
Well, I hesitate putting this up because it is a simple fix but comes with other issues. If you want the rotational axis to display and work in RPM instead of DPM just change your steps per in motor tuning to Current Steps Per X 360. This will break other things though like toolpath preview and most CAM programs wont generate code for it.

I maintain the proper fix is to use G93. And change your way of thinking of course. The above may be a fix for you but anyone reading this needs to make sure they understand that the real issue is your way of thinking. Just because you can do something doesn't mean you should. Mach like all other software is code. The code can be written to adapt to certain things but to an incorrect way of thinking is not a goal of any programmer I know. This is why standards and following them is so important.

No one should hate having to change their way of thinking to be on par with standards. No shame in it and you will be smarter for changing. Be happy that you are smarter than the machines today. That will not be the case much longer IMO. Today you can adapt your way of thinking to overcome obstacles keeping you from the desired end result. Most machines can't do that now. But when they can (and they will)....... we become useless eaters. So, take pride in your advantage today. It may not exist tomorrow.

242
Mach4 General Discussion / Re: My File is running real slow
« on: April 12, 2018, 11:14:04 AM »
Chad, the problem is, you only have one feed rate at the time.
So say you have a line of Gcode that all axis are doing a synchronized feed move on (G1 F5 X5.000 Y5.000 Z5.000 A360.000).  All axis are going to end at the location requested at the same time.

Without the A axis this move would take 1 minute. But because of the A axis this line will take 360 degrees /5 degrees per minute = 72 minutes to complete.

However, using the same axes and values (G1 F5 X5.000 Y5.000 Z5.000 A360.000) but replacing the G1 with G93 and the F5 with F1 (G93 F1 X5.000 Y5.000 Z5.000 A360.000) it would finish in one minute............ assuming motor tuning would allow it to finish in the time of course. Now if any of the axis can't move the requested distance in the requested time (due to motor tuning) the time it would take will be extended to the fastest it can possibly happen in.

Hope that makes sense.

243
Mach4 General Discussion / Re: My File is running real slow
« on: April 11, 2018, 07:51:41 PM »
The proper solution is to use G93 – Inverse Time Feed. Study up on it. You can find information about it in the Mill Gcode programming.pdf file in your Mach4/Docs folder.

244
Mach4 General Discussion / Re: Lua file operations
« on: April 08, 2018, 12:46:03 AM »
I would create a single string then write that single string to the file once. You're opening once and writing twice.

A perfectly working example can be found here.
http://www.machsupport.com/forum/index.php/topic,35896.msg245756.html#msg245756

245
Mach4 General Discussion / Re: wx.widgets
« on: March 29, 2018, 11:39:37 AM »
This is a cheat sheet for message boxes.

Code: [Select]
--Get input from user
local MyPass = wx.wxGetPasswordFromUser("Message", "Caption", "Default Value")
local MyText = wx.wxGetTextFromUser("Message", "Caption", "Default Value")
local MyNum = wx.wxGetNumberFromUser("Message", "Prompt", "Caption", 50, 0, 100) --Default, min, max
local MyChoice = wx.wxGetSingleChoice ("message", "caption", ({"Choice1", "Choice2", "Choice3"})) --, wxWindow *parent=NULL, int x=wxDefaultCoord, int y=wxDefaultCoord, bool centre=true, int width=wxCHOICE_WIDTH, int height=wxCHOICE_HEIGHT, int initialSelection=0)
local dir = wx.wxDirSelector ("Choose a Directory", "C:\\")--Caption, default directory --long style=0, const wxPoint &pos=wxDefaultPosition, wxWindow *parent=NULL)

--wxMessageBox Types
--2 = Yes, No
--4 = Ok
--16 = Ok, Cancel
--18 = Yes, No, Cancel

--wxMessageBox Return Values
--Yes = 2
--OK = 4
--No = 8
--Cancel = 16

--Have user click a button
local Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",2) --Yes,No
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",2) --Yes,No
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",4) --Ok
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",16) --Ok, Cancel
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",16) --Ok, Cancel
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",18) --Yes, No, Cancel
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",18) --Yes, No, Cancel
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns
Iclicked = wx.wxMessageBox("This is my Message", "This is my Caption",18) --Yes, No, Cancel
wx.wxMessageBox(tostring(Iclicked)) --Show in another message box what the button click in the previous message box returns

--Another way of using a messagebox Type defined with a wx constant
local yesno = wx.wxMessageBox("This is my Message", "This is my Caption", wx.wxYES_NO)
if (yesno == wx.wxYES) then

elseif (yesno == wx.wxNO) then

end

--http://docs.wxwidgets.org/3.0.1/group__group__funcmacro__dialog.html#ga193c64ed4802e379799cdb42de252647

247
Mach4 General Discussion / Re: Zero Brane not working properly.
« on: March 27, 2018, 04:28:49 PM »
I'm not sure either. All I do is open Mach, go to operator, Edit/Debug scripts and browse to the macro I want to step through and it all works good. You might want to delete any .mcc or .bak files in that macros directory before launching Mach just for safe measure.

248
Mach4 General Discussion / Re: Zero Brane not working properly.
« on: March 27, 2018, 03:50:19 PM »
That's probably not a bad idea either way.

249
Mach4 General Discussion / Re: A Aixs Brake
« on: March 27, 2018, 03:38:52 PM »
Would the output for the brake not be a  function of the drive? All I have ever seen required voltage to release the brake. 0 volts allows the brake to lock. Not sure I have ever seen one work as your describing. When the servo is powered up it shouldn't allow the axis to move. Usually the brake is only applied at power out, drive fault, etc. but I think I have seen the option for setting it up like you want in some drive configuration software.

250
Mach4 General Discussion / Re: Zero Brane not working properly.
« on: March 27, 2018, 03:24:58 PM »
Not what mine looks like............

Program starting as '"C:\Mach4Industrial\ZeroBraneStudio\bin\lua52.exe" -e "io.stdout:setvbuf('no')" "C:\Users\me\AppData\Local\Temp\.9764.tmp"'.
Program 'lua52.exe' started in 'C:\Mach4Industrial\Profiles\Test\Macros' (pid: 2132).
Debugging session started in 'C:\Mach4Industrial\Profiles\Test\Macros\'.
Debugging session completed (traced 0 instructions).
Program completed in 1.30 seconds (pid: 2132).

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 »