Locking latching Button for Machine ON / OFF
- denhen89
 - 
				
									Topic Author
											 - Offline
 - Elite Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 298
 - Thank you received: 26
 
			
	
						03 Jun 2020 08:25				#169920
		by denhen89
	
	
		
			
	
			
			 		
													
	
				Locking latching Button for Machine ON / OFF was created by denhen89			
			
				Hello guys,
i have ordered couple of buttons, some are momentary type button the others locking buttons. I want to have a physical locking button for Machine On/Off and later also for coolant if needed.
With the below code the machine goes on when pushing the button, but when i release it it stays on, i have to push the button again to power off the machine:
net btn-pwr toggle.0.in <= hm2_7i76e.0.7i76.0.0.input-04
net pwr-btn toggle2nist.0.in <= toggle.0.out
net tog-on toggle2nist.0.is-on <= halui.machine.is-on
net pwr-on halui.machine.on <= toggle2nist.0.on
net pwr-off halui.machine.off <= toggle2nist.0.off
I am not sure which commands i need to power off the machine when the button is released. On the Toggle2nist doc page i have read that the command is for a momentary button, so i am wondering if there is a command for a locking button?
Thanks in advance.
					i have ordered couple of buttons, some are momentary type button the others locking buttons. I want to have a physical locking button for Machine On/Off and later also for coolant if needed.
With the below code the machine goes on when pushing the button, but when i release it it stays on, i have to push the button again to power off the machine:
net btn-pwr toggle.0.in <= hm2_7i76e.0.7i76.0.0.input-04
net pwr-btn toggle2nist.0.in <= toggle.0.out
net tog-on toggle2nist.0.is-on <= halui.machine.is-on
net pwr-on halui.machine.on <= toggle2nist.0.on
net pwr-off halui.machine.off <= toggle2nist.0.off
I am not sure which commands i need to power off the machine when the button is released. On the Toggle2nist doc page i have read that the command is for a momentary button, so i am wondering if there is a command for a locking button?
Thanks in advance.
Please Log in or Create an account to join the conversation.
- denhen89
 - 
				
									Topic Author
											 - Offline
 - Elite Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 298
 - Thank you received: 26
 
			
	
						03 Jun 2020 19:27				#169981
		by denhen89
	
	
		
			
	
			
			 		
													
	
				Replied by denhen89 on topic Locking latching Button for Machine ON / OFF			
			
				Would be great if someone could help me out with that or at least point me to the right direction 
.
The button gives 24v output when pressed - when released 0V.
There has to be a way to get it to work, but i cant find any information about a similar situation here in the forum.
					The button gives 24v output when pressed - when released 0V.
There has to be a way to get it to work, but i cant find any information about a similar situation here in the forum.
Please Log in or Create an account to join the conversation.
- tommylight
 - 
				
											 - Away
 - Moderator
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 20860
 - Thank you received: 7113
 
			
	
						03 Jun 2020 19:35				#169982
		by tommylight
	
	
		
			
				
					
	
			
			 		
													
	
				Replied by tommylight on topic Locking latching Button for Machine ON / OFF			
			Give me some time to think it over.Hello guys,
i have ordered couple of buttons, some are momentary type button the others locking buttons. I want to have a physical locking button for Machine On/Off and later also for coolant if needed.
With the below code the machine goes on when pushing the button, but when i release it it stays on, i have to push the button again to power off the machine:
net btn-pwr toggle.0.in <= hm2_7i76e.0.7i76.0.0.input-04
net pwr-btn toggle2nist.0.in <= toggle.0.out
net tog-on toggle2nist.0.is-on <= halui.machine.is-on
net pwr-on halui.machine.on <= toggle2nist.0.on
net pwr-off halui.machine.off <= toggle2nist.0.off
I am not sure which commands i need to power off the machine when the button is released. On the Toggle2nist doc page i have read that the command is for a momentary button, so i am wondering if there is a command for a locking button?
Thanks in advance.
Please Log in or Create an account to join the conversation.
- tommylight
 - 
				
											 - Away
 - Moderator
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 20860
 - Thank you received: 7113
 
			
	
						03 Jun 2020 19:46				#169988
		by tommylight
	
	
		
			
	
			
			 		
													
	
				Replied by tommylight on topic Locking latching Button for Machine ON / OFF			
			
				linuxcnc.org/docs/devel/html/man/man9/oneshot.9.html
Seems that would do what you need.
And then there is also edge component.
Between the two, that should work.
					Seems that would do what you need.
And then there is also edge component.
Between the two, that should work.
Please Log in or Create an account to join the conversation.
- tommylight
 - 
				
											 - Away
 - Moderator
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 20860
 - Thank you received: 7113
 
			
	
						03 Jun 2020 19:49				#169990
		by tommylight
	
	
		
			
	
			
			 		
													
	
				Replied by tommylight on topic Locking latching Button for Machine ON / OFF			
			
				From some more reading it looks like oneshot will work, it just needs two instances to trigger one on the raising edge and the other on the falling edge, then attach outputs to the machine is enabled or wherever you need it to.			
					Please Log in or Create an account to join the conversation.
- denhen89
 - 
				
									Topic Author
											 - Offline
 - Elite Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 298
 - Thank you received: 26
 
			
	
						03 Jun 2020 19:53				#169992
		by denhen89
	
	
		
			
	
			
			 		
													
	
				Replied by denhen89 on topic Locking latching Button for Machine ON / OFF			
			
				Thank you very much Tommy!
Just about 15min ago i found the oneshot command but i wasnt sure if that will work.
I will give my best to get it to work by my self, because i would like to understand and not just paste and copy.
Thanks for your time!
					Just about 15min ago i found the oneshot command but i wasnt sure if that will work.
I will give my best to get it to work by my self, because i would like to understand and not just paste and copy.
Thanks for your time!
Please Log in or Create an account to join the conversation.
- tommylight
 - 
				
											 - Away
 - Moderator
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 20860
 - Thank you received: 7113
 
			
	
						03 Jun 2020 20:11				#169994
		by tommylight
	
	
		
			
	
			
			 		
													
	
				Replied by tommylight on topic Locking latching Button for Machine ON / OFF			
			
				Just spent some 10 minutes with it, not that easy needs something .......			
					Please Log in or Create an account to join the conversation.
- denhen89
 - 
				
									Topic Author
											 - Offline
 - Elite Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 298
 - Thank you received: 26
 
			
	
						03 Jun 2020 20:28				#169999
		by denhen89
	
	
		
			
	
			
			 		
													
	
				Replied by denhen89 on topic Locking latching Button for Machine ON / OFF			
			
				That does not motivate  me 
I have found this interesting thread: forum.linuxcnc.org/24-hal-components/352...-oneshot-won-t-shoot
I do not believe that i will get it done without any help. That does not mean that i will not try - i have spent already about 6 hours to get it done
 and i really would like to learn and understand, but almost everytime i want to do something without any help i am thinking that i am just not smart enough for those kind of things 
			
					I have found this interesting thread: forum.linuxcnc.org/24-hal-components/352...-oneshot-won-t-shoot
I do not believe that i will get it done without any help. That does not mean that i will not try - i have spent already about 6 hours to get it done
Please Log in or Create an account to join the conversation.
- tommylight
 - 
				
											 - Away
 - Moderator
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 20860
 - Thank you received: 7113
 
			
	
						03 Jun 2020 21:06				#170009
		by tommylight
	
	
		
			
	
	
			 		
													
	
				Replied by tommylight on topic Locking latching Button for Machine ON / OFF			
			
				Already went over that topic, nice title ! 
You are at the same point i was a few (quite a few) years back, getting to know Linuxcnc (EMC2 back then) when i bumped into the components page and got shocked by how much stuff can be done with those small components! Was a huge and pleasant surprise that opened a door to new possibilities.
On the main page of LinuxCNC is the section named "Community", so helping each other is "enabled by default"
			
					You are at the same point i was a few (quite a few) years back, getting to know Linuxcnc (EMC2 back then) when i bumped into the components page and got shocked by how much stuff can be done with those small components! Was a huge and pleasant surprise that opened a door to new possibilities.
On the main page of LinuxCNC is the section named "Community", so helping each other is "enabled by default"
		The following user(s) said Thank You: denhen89 	
			Please Log in or Create an account to join the conversation.
- rodw
 - 
				
											 - Offline
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 11472
 - Thank you received: 3848
 
			
	
						03 Jun 2020 21:15				#170011
		by rodw
	
	
		
			
	
			
			 		
													
	
				Replied by rodw on topic Locking latching Button for Machine ON / OFF			
			
				Whats wrong with toggle?
linuxcnc.org/docs/devel/html/man/man9/toggle.9.html
					linuxcnc.org/docs/devel/html/man/man9/toggle.9.html
Please Log in or Create an account to join the conversation.
		Time to create page: 0.173 seconds