MonoKrom - QtPyVCP GUI for PlasmaC and Mill
- rodw
 - 
				
											 - Away
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 11472
 - Thank you received: 3848
 
			
	
						18 May 2022 02:00				#243238
		by rodw
	
	
		
			
	
	
			 		
													
	
				Replied by rodw on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				Awesome work! Thanks James!!			
					
		The following user(s) said Thank You: TurBoss 	
			Please Log in or Create an account to join the conversation.
- aabtech
 - 
				
											 - Offline
 - Premium Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 113
 - Thank you received: 16
 
			
	
						22 Jan 2023 07:10				#262634
		by aabtech
	
	
		
			
	
			
			 		
													
	
				Replied by aabtech on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				It's a good thing but if you can make the UI an advance laser cutter and engraving it will be better because there is no UI that is made for laser cutter and engraving in linuxcnc.			
					Please Log in or Create an account to join the conversation.
- Joco
 - 
				
											 - Offline
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 530
 - Thank you received: 326
 
			
	
						25 May 2023 04:51				#272136
		by Joco
	
	
		
			
	
	
			 		
													
	
				Replied by Joco on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				Just letting people know I am back into Monokrom Plasma.   Currently I have been reviewing code and fixing a few bugs as well as starting better interaction with Sheetcam.  I have a post processor in initial form as well as adjustments made to the qtpyvcp and UI code to more correctly transition to use its tool# versus my previous DB primary key ID based approach.
Cheers - J.
					Cheers - J.
		The following user(s) said Thank You: tommylight, rodw, Lcvette, KCJ, caretech, pinder, Ashley, Diegot 	
			Please Log in or Create an account to join the conversation.
- grijalvap
 - 
				
											 - Offline
 - Elite Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 197
 - Thank you received: 63
 
			
	
						09 Nov 2023 18:37				#284955
		by grijalvap
	
	
		
			
	
			
			 		
													
	
				Replied by grijalvap on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				how complicated is to integrate in the GUI a postprocesor that read dxf and create the GCODE using all these hole improvements?			
					Please Log in or Create an account to join the conversation.
- rodw
 - 
				
											 - Away
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 11472
 - Thank you received: 3848
 
			
	
						09 Nov 2023 18:56				#284958
		by rodw
	
	
		
			
				
I think it can simply be done by using a filter that calls this program if a dxf is opened.
					
	
			
			 		
													
	
				Replied by rodw on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			There is a program dxf2gcode floating around. I have never used it because usually I want to nest multiple parts which sheetcam does so easilly.how complicated is to integrate in the GUI a postprocesor that read dxf and create the GCODE using all these hole improvements?
I think it can simply be done by using a filter that calls this program if a dxf is opened.
Please Log in or Create an account to join the conversation.
- grijalvap
 - 
				
											 - Offline
 - Elite Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 197
 - Thank you received: 63
 
			
	
						09 Nov 2023 19:31				#284962
		by grijalvap
	
	
		
			
	
			
			 		
													
	
				Replied by grijalvap on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				yes I saw dxf2Gcode and it seems to work well but as you mention sheetCAM does nesting and many other things better, but neigther are plasma specific and gui integrated,
I think that can be a good feature to integrate in the GUI just for the non expert using plasma, also thisintegrated postprocessor can include all these piercing and hole cut tech directly in QTplasmaC and/or Monokrome GUI
					I think that can be a good feature to integrate in the GUI just for the non expert using plasma, also thisintegrated postprocessor can include all these piercing and hole cut tech directly in QTplasmaC and/or Monokrome GUI
Please Log in or Create an account to join the conversation.
- Joco
 - 
				
											 - Offline
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 530
 - Thank you received: 326
 
			
	
						09 Nov 2023 20:19				#284969
		by Joco
	
	
		
			
	
			
			 		
													
	
				Replied by Joco on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				I get the sentiment and I did some hacking on dxf2gcode a while back with this general intent.  But I parked it for a few reasons.
1. when you start interpreting dxf automatically you have to make assumptions to detect internal and external cuts and thus which direction to go and what side of the dxf path to put the kerf offset. All doable but if you do not like the result then what do you do? Enabling editing in monokrom UI is starting to replicate other tools like sheetcam.
2. Then I started looking at sheetcam more closely and what it did and what could be achieved with the PP. At which point I decided the effort v's cost (cose lets face it for what it does sheetcam is a family meal out for dinner or a night at the pub which you then piss away) it just wasn't worth it.
Result: use sheetcam to convert anything into gcode. Leverage sheetcam's superior control around tools, nesting, geometry etc etc. Do anything clever via gocde manipulation from (ideally) sheetcam and enhance the sheetcam PP as needed to support anything special monokrom needed (e.g. enhance material magic comment to include extra params to support full tool/material management in sheetcam).
Just my view and doesn't stop anyone else with a different view driving down this country lane. Happy to work with anyone wanting to do that so a co-ordinated design and resulting pull request can be made.
Cheers - J.
					1. when you start interpreting dxf automatically you have to make assumptions to detect internal and external cuts and thus which direction to go and what side of the dxf path to put the kerf offset. All doable but if you do not like the result then what do you do? Enabling editing in monokrom UI is starting to replicate other tools like sheetcam.
2. Then I started looking at sheetcam more closely and what it did and what could be achieved with the PP. At which point I decided the effort v's cost (cose lets face it for what it does sheetcam is a family meal out for dinner or a night at the pub which you then piss away) it just wasn't worth it.
Result: use sheetcam to convert anything into gcode. Leverage sheetcam's superior control around tools, nesting, geometry etc etc. Do anything clever via gocde manipulation from (ideally) sheetcam and enhance the sheetcam PP as needed to support anything special monokrom needed (e.g. enhance material magic comment to include extra params to support full tool/material management in sheetcam).
Just my view and doesn't stop anyone else with a different view driving down this country lane. Happy to work with anyone wanting to do that so a co-ordinated design and resulting pull request can be made.
Cheers - J.
Please Log in or Create an account to join the conversation.
- rodw
 - 
				
											 - Away
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 11472
 - Thank you received: 3848
 
			
	
						04 Aug 2025 11:17				#332810
		by rodw
	
	
		
			
	
	
			 		
													
	
				Replied by rodw on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				Better late than never but here is a video showcasing Monokrom. I still think this is a pretty impressive GUI, thankls to JoCo..
It would be absolutely amazing if you guys could subscribe to my Youtube channel while watching it. I am 10 short of 1000 subscribers. Its only taken 15 years....
			
					It would be absolutely amazing if you guys could subscribe to my Youtube channel while watching it. I am 10 short of 1000 subscribers. Its only taken 15 years....
		The following user(s) said Thank You: tommylight, Lcvette 	
			Please Log in or Create an account to join the conversation.
- tommylight
 - 
				
											 - Away
 - Moderator
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 20860
 - Thank you received: 7115
 
			
	
						04 Aug 2025 12:22				#332811
		by tommylight
	
	
		
			
	
			
			 		
													
	
				Replied by tommylight on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			
				Subbed with @tomapc and was already subbed with @toma.cnc1 , i think, will also check @toma.3d.			
					Please Log in or Create an account to join the conversation.
- rodw
 - 
				
											 - Away
 - Platinum Member
 - 
				
			 
		Less
		More
		
			
	
		- Posts: 11472
 - Thank you received: 3848
 
			
	
						04 Aug 2025 23:17				#332854
		by rodw
	
	
		
			
				
					
	
	
			 		
													
	
				Replied by rodw on topic MonoKrom - QtPyVCP GUI for PlasmaC and Mill			
			Thanks Tommy! (9 to go), keep up the good work.Subbed with @tomapc and was already subbed with @toma.cnc1 , i think, will also check @toma.3d.
		The following user(s) said Thank You: tommylight 	
			Please Log in or Create an account to join the conversation.
		Moderators: KCJ, Lcvette	
		Time to create page: 0.610 seconds