KN4IUU's Home built home designed Foam Stabber V1 thread!

FlamingRCAirplanes

Elite member
Just a thread to help me stop hijacking @trey 's thread... Latest update is I spent all day making a script to automate some changes to the G-Code to make it work with my Needle cutter, I wanted to use LightBurn, which was $$ but it only supports a laser, not a needle, so the script find all of the laser power settings, then it changes them depending on how strong it is, to a height in mm, It really works! I am so happy!

That is the script...
1644549937358.png

This is the software I will be using
1644549722723.png
 

Musdang

Not Quite Legendary
Just a thread to help me stop hijacking @trey 's thread... Latest update is I spent all day making a script to automate some changes to the G-Code to make it work with my Needle cutter, I wanted to use LightBurn, which was $$ but it only supports a laser, not a needle, so the script find all of the laser power settings, then it changes them depending on how strong it is, to a height in mm, It really works! I am so happy!

That is the script...
View attachment 218583
This is the software I will be using
View attachment 218581
Is that a mustang stab?
 

Musdang

Not Quite Legendary
#include lcd.display

Void setup()
lcd.display;
lcd.clear

Void loop()
Lcd.setCursor(0,1);
Lcd.print(“I’m a”);
Lcd.setCursor(1,1);
Lcd.print(“Nerd”);
 

FlamingRCAirplanes

Elite member
#include <LiquidCrystal.h>

const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);


Void setup()
{
lcd.begin(16, 2);
lcd.clear();
}

Void loop()
{
lcd.setCursor(0, 1);
lcd.println("I am a");
lcd.print("FAIL');
}