M200 prompts sometimes disappear <fixed>

All things related to the Centroid Acorn CNC Controller

Moderator: cnckeith

ShawnM
Community Expert
Posts: 3041
Joined: Fri May 24, 2019 8:34 am
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 7804734C6498-0401191832
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Clearwater, FL

Re: M200 prompts sometimes disappear

Post by ShawnM »

corbin wrote: Wed Dec 04, 2024 1:40 am
suntravel wrote: Mon Dec 02, 2024 3:09 pm I think you are overcomplicating things...

IMHO after decades of CNC with ATC in my job, I never needed a message if the machines are changing tools.
I agree -- experienced CNC operators don't need much to make the machine do what they want to do.

I'm trying to make it more user friendly, particularly for hobbyists. I also just like writing software..

Corbin
I agree with Uwe, it seems I spend more time commenting out lines of code in the new OEM macros so they stop wasting my time. :mrgreen:


suntravel
Community Expert
Posts: 3697
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: M200 prompts sometimes disappear

Post by suntravel »

That is why I also edit the PLC to make keybord Enter real cycle start again ;)

Uwe


ShawnM
Community Expert
Posts: 3041
Joined: Fri May 24, 2019 8:34 am
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 7804734C6498-0401191832
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Clearwater, FL

Re: M200 prompts sometimes disappear

Post by ShawnM »

suntravel wrote: Wed Dec 04, 2024 10:08 am That is why I also edit the PLC to make keybord Enter real cycle start again ;)

Uwe
That was one of the first things I did. :D

In the 6 years now that I've been using CNC12 I've never had to make ANY PLC changes. Who would have thought I'd have to learn PLC programming just to make the keyboard work like it's supposed to? :mrgreen: It was done for safety reasons? Really? :?


suntravel
Community Expert
Posts: 3697
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: M200 prompts sometimes disappear

Post by suntravel »

If you want to Start hit Enter
- Enter -

IF you really want to start hit Cycle Start
- Cycle Start -

Are you sure? Press Enter and Cycle Start together !

:mrgreen:

Uwe


ShawnM
Community Expert
Posts: 3041
Joined: Fri May 24, 2019 8:34 am
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 7804734C6498-0401191832
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Clearwater, FL

Re: M200 prompts sometimes disappear

Post by ShawnM »

And if you are REALLY, REALLY sure you want to start, press Cycle Start while patting your head and standing on one foot. :D


suntravel
Community Expert
Posts: 3697
Joined: Thu Sep 23, 2021 3:49 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 6433DB0446C1-08115074
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Germany

Re: M200 prompts sometimes disappear

Post by suntravel »

ShawnM wrote: Wed Dec 04, 2024 12:55 pm And if you are REALLY, REALLY sure you want to start, press Cycle Start while patting your head and standing on one foot. :D
That is for the next update with webcam and AI to verify the user position :ugeek:

Uwe


ShawnM
Community Expert
Posts: 3041
Joined: Fri May 24, 2019 8:34 am
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No
CNC Control System Serial Number: 7804734C6498-0401191832
DC3IOB: No
CNC12: Yes
CNC11: No
CPU10 or CPU7: No
Location: Clearwater, FL

Re: M200 prompts sometimes disappear

Post by ShawnM »

suntravel wrote: Wed Dec 04, 2024 1:36 pm
ShawnM wrote: Wed Dec 04, 2024 12:55 pm And if you are REALLY, REALLY sure you want to start, press Cycle Start while patting your head and standing on one foot. :D
That is for the next update with webcam and AI to verify the user position :ugeek:

Uwe
OMG, that's funny as hell. Thanks for the laugh Uwe.


cncsnw
Community Expert
Posts: 4619
Joined: Wed Mar 24, 2010 5:48 pm
Acorn CNC Controller: No
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: No
Hickory CNC Controller: No
Oak CNC controller: No

Re: M200 prompts sometimes disappear

Post by cncsnw »

Regarding corbin's initial application:

There is already a well-defined place on the screen for status updates, to tell the operator what the machine is doing as it runs. That is the scrolling message box in the upper right.

Floating message boxes in the middle of the screen are an appropriate place for user-interactive prompts that require a response before operation can continue.

Right now, the PLC program can add messages to the scrolling message box, but a CNC macro cannot.

Perhaps what is needed for this application is a new M200-series M function which constructs the message string per the usual rules, then adds it to the scrolling message box. Such messages could also be logged, according to the priority level in Parameter 140.

If you are trying to make using the control friendly for hobbyists and novice users, don't train them out of looking at the message box. Train them to get used to looking at the message box.


cnckeith
Site Admin
Posts: 9029
Joined: Wed Mar 03, 2010 4:23 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: Yes
Hickory CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: Yes
CNC11: Yes
CPU10 or CPU7: Yes
Contact:

Re: M200 prompts sometimes disappear

Post by cnckeith »

cnckeith wrote: Mon Dec 02, 2024 3:03 pm and we fixed this issue this morning so the fix will be in v5.22 hopefully will be released soon!
v5.22 is now available.
https://www.centroidcnc.com/centroid_di ... loads.html
Need support? READ THIS POST first. http://centroidcncforum.com/viewtopic.php?f=60&t=1043
All Acorn Documentation is located here: viewtopic.php?f=60&t=3397
Answers to common questions: viewforum.php?f=63
and here viewforum.php?f=61
Gear we use but don't sell. https://www.centroidcnc.com/centroid_di ... _gear.html


cnckeith
Site Admin
Posts: 9029
Joined: Wed Mar 03, 2010 4:23 pm
Acorn CNC Controller: Yes
Plasma CNC Controller: No
AcornSix CNC Controller: No
Allin1DC CNC Controller: Yes
Hickory CNC Controller: No
Oak CNC controller: Yes
CNC Control System Serial Number: none
DC3IOB: Yes
CNC11: Yes
CPU10 or CPU7: Yes
Contact:

Re: M200 prompts sometimes disappear

Post by cnckeith »

cncsnw wrote: Mon Dec 02, 2024 5:58 pm Write a program or macro that includes a line like:

Code: Select all

M200 "Insert tool and press Cycle Start"
Run that program with P10 = 32.

Then run that same program with P10 = 0.

Do you notice the difference?

I propose that M200 should display the specified message (and also wait indefinitely for Cycle Start) regardless of the value of P10.
noted, thanks.
Need support? READ THIS POST first. http://centroidcncforum.com/viewtopic.php?f=60&t=1043
All Acorn Documentation is located here: viewtopic.php?f=60&t=3397
Answers to common questions: viewforum.php?f=63
and here viewforum.php?f=61
Gear we use but don't sell. https://www.centroidcnc.com/centroid_di ... _gear.html


Post Reply