Laser Engraver Blogs

How to use Longer Ray5 Mainboard as ESP32 module
How to use Longer Ray5 Mainboard as ESP32 module

The Longer Laser Engravers are equipped with a powerful ESP32-based mainboard, which can offer high computing speeds and advanced features such as WiFi, Touchscreen Display, microSD slot and so on. In particular, Longer Ray5 has an MKS LTS mainboard, which offers excellent engraving speeds with precise adjustment of the laser module's power.

One of the main risks for the mainboard of Longer Laser Engravers is to manually move the motor axes. This action, in fact, generates a current that goes from the motors to the mainboard, damaging the stepper drivers irreparably. When this happens, the mainboard can no longer move the axle motors, and must be replaced. However, as mentioned before, the mainboard is based on ESP32, and therefore even if it is no longer suitable for use with Longer Ray5, it can still be useful for other projects.

The fact that the heart of the system is an ESP32 completely changes the perspective in the event of a driver failure. In a traditional mainboard, damage to the stepper drivers would mean total death of the component. With ESP32, on the other hand, we are faced with an open and versatile architecture that keeps its computational value intact. So even though the power section of the MKS LTS is compromised and can no longer handle PWM signals for the Longer Ray5 motors, the onboard microcontroller remains an amazing asset.

As with Arduino, ESP32 can also be programmed according to what you need most; it is possible, for example, to create an RF receiving station, a home automation control system, an anti-theft system, and so on. The only thing you need is writing proper C++ code.

Unlike a ready-to-use ESP32 board, on MKS LTS the pins are not directly indicated and ready to use, but must be identified among the various pins of the mainboard, as they are connected to the different functions in the design phase. For individuals, just use a function like:

int pins[] = {2, 4, 5, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 32, 33};

int numPins = sizeof(pins) / sizeof(int);

 

void setup() {

  Serial.begin(115200);

  delay(1000);

  Serial.println("--- ACTIVE INVESTIGATOR MODE ---");

  Serial.println("Connect a wire to GND and tap the pins one at a time.");

 

  for (int i = 0; i < numPins; i++) {

    // We use INPUT_PULLUP for pins that support it

    // Note: 34, 35, 36, 39 don't have internal pullups, we will test them too

    if (pins[i] < 34) {

      pinMode(pins[i], INPUT_PULLUP);

    }

  }

}

 

void loop() {

  for (int i = 0; i < numPins; i++) {

    // If the pin reads LOW, you are touching it with GND

    if (digitalRead(pins[i]) == LOW) {

      Serial.print("FOUND! The pin you're tapping is the GPIO: ");

      Serial.println(pins[i]);

      

      // Wait for the wire to disconnect so as not to clog the serial

      while(digitalRead(pins[i]) == LOW) { delay(10); }

      Serial.println("---------------------------------------");

    }

  }

}

At this point, simply connect the respective pins to GND via a 10k pull-down resistor for safety, and the pin-detected will appear on consoles.

However, at the end of the detection procedure (which will take several hours) the available result pins are only these shown in the figure:

That is, the pins are available:

GPIO Main Function Usage notes

2 I/O Connected to Probe.

4 ADC2_CH0 / Touch General Purpose. Great for CSN - SPI communication.

18 VSPI SCK Great for SPI communication.

19 VSPI MISO Great for SPI communication.

23 VSPI MOSI Great for SPI communication.

33 ADC1_CH5 / Touch 8 General Purpose. Great for GDO0.

34 ADC1_CH6 Hardware pull-ups. Input only. 3.3V always present.

35 ADC1_CH7 Hardware pull-ups. Input only. 3.3V always present.

36 ADC1_CH0 Hardware pull-ups. Input only. 3.3V always present.

13 ADC2_CH4 HSPI communication connected to microSD.

14 ADC2_CH6 HSPI communication connected to microSD.

15 ADC2_CH3 / Strapping HSPI communication connected to microSD.

39 Solo Input Great for ADC1 but connected to microSD.

The GPIOs available are some of the best in ESP32, as you can use the SPI protocol with them, which allows you to do many useful things, such as using a CC1101 RF chip.

With the well-known GPIO pins, even a damaged MKS LTS becomes a valuable resource, to be used in a thousand different ways and just as many fun projects.

 

By Laser Engraver Blogs | February 25, 2026
How to configure ESP32 to Arduino IDE
How to configure ESP32 to Arduino IDE

The Longer Laser Engravers are equipped with a powerful ESP32-based mainboard, which can offer high computing speeds and advanced features such as WiFi, Touchscreen Display, microSD slot and so on. In particular, Longer Ray5 has an MKS LTS mainboard, which offers excellent engraving speeds with precise adjustment of the laser module's power.

One of the main risks for the mainboard of Longer Laser Engravers is to manually move the motor axes. This action, in fact, generates a current that goes from the motors to the mainboard, damaging the stepper drivers irreparably. When this happens, the mainboard can no longer move the axle motors and must be replaced. However, as mentioned before, the mainboard is based on ESP32, and therefore even if it is no longer suitable for use with Longer Ray5, it can still be useful for other projects.

As seen in the previous article, once you understand that the Longer Ray5 mainboard is to all intents and purposes a powerful ESP32-based development board, and after identifying the location of the various GPIOs, the next step is to make it operational. To do this, the reference software is Arduino IDE, the environment that allows you to write and run C++ code on ATMEGA and ESP32 boards.

The first step is to download the latest stable version of the Arduino IDE from the official website (arduino.cc). By default, the Arduino IDE is configured for classic Arduino boards, so in order to see the ESP32 of MKS LTS you need to add the definitions of the Espressif boards.

In the Boards Manager, search for "ESP32" and click Install for the Espressif Systems package.

Once this has been done successfully, unlike a commercial board, MKS LTS does not appear with its specific name in the list. However, since it is based on a standard module, the correct configuration to select is "ESP32 Dev Module, with the following configuration:

Board: ESP32 Dev Module

Flash Mode: DIO

Flash Frequency: 80MHz

Upload Speed: 921600

At this point, power MKS LTS with 12V DC, and connect the mainboard to the PC via the USB cable. Select the COM port for the CH340 serial chip, and then run a test sketch. Once you click on Upload, keep an eye on the console: if the upload reaches 100%, the MKS LTS is officially reborn as a development board.

Keep in mind that in order to use the console, it is always necessary to set a delay of 5 seconds in each sketch, as shown in the figure:

Having the environment configured correctly is the only real barrier between a corrupted board and a working project. With the Arduino IDE ready and the GPIO pins already mapped, the limit is no longer the hardware that no longer moves the motors but only the complexity of the code you decide to write on it.

By Laser Engraver Blogs | February 25, 2026
USB Connection Failure Troubleshooting Guide for LaserBurn Software
USB Connection Failure Troubleshooting Guide for LaserBurn Software

Introduction

When connecting your device to the LaserBurn software via USB, connection failures may occasionally occur due to cable issues, driver conflicts, power management settings, or system compatibility problems.

This guide provides a structured, step-by-step troubleshooting process—starting from simple physical checks to advanced system diagnostics—to help you quickly identify the root cause and restore a stable USB connection.

Stage 1: Quick Check and Basic Troubleshooting

These steps are the simplest and most often overlooked, but they often resolve the issue.

1. Reseat the USB cable:

Unplug the USB cable, wait a few seconds, then reseat it, ensuring it is fully inserted.

Purpose: Eliminate a momentary poor contact or software handshake failure.

2. Try a different USB port:

Unplug the USB cable from the current computer port and try another one (for example, from the front panel to the back panel).

Purpose: Eliminate a single USB port failure or insufficient power.

3. Restart the device and computer:

Shut down and restart both the device and computer.

Purpose: Clears temporary system caches and driver errors, a universal solution for various esoteric issues.

4. Check the physical connection:

Check the USB cable for visible damage or bends.

Check the device's USB port for loose connections, foreign objects, or damage.

Purpose: Eliminate the most basic physical layer issues.

5. Check if the USB port is occupied.

Stage 2: Software and Driver Troubleshooting

If basic troubleshooting doesn't work, the problem may lie with the software or driver.

1. Check the Device Manager:

On Windows, right-click "This PC" -> "Manage" -> "Device Manager."

Check for devices with a yellow exclamation mark (!) or question mark (?), especially under "Universal Serial Bus controllers" and "Other devices."

Action: If you see an unknown device or your device with an exclamation mark, right-click it and select "Update driver" -> "Search automatically for driver." If that doesn't work, try "Uninstall device" and then restart your computer to allow the system to automatically re-identify and install the driver.

2. Disable the USB selective suspend setting:

This is a power-saving feature that can sometimes cause unstable connections.

Path: Control Panel -> Hardware and Sound -> Power Options -> Change plan settings -> Change advanced power settings -> Find "USB settings" -> "USB selective suspend setting" -> Set it to "Disabled."

3. Check power management:

In Device Manager, expand Universal Serial Bus controllers, right-click each USB root hub, select Properties -> Power Management, and uncheck "Allow the computer to turn off this device to save power." Repeat this step for all USB root hubs.

Stage 3: In-depth hardware and system troubleshooting

If all of the above steps fail, you may need to consider more complex issues.

1. Replace the USB cable:

This is a very common problem! Many USB cables only charge, not transfer data. Be sure to use the original cable that came with your device or a high-quality USB cable that's proven to transfer data properly.

2. Test on another computer:

Connect your device to another working computer.

Result Interpretation:

If it works on the other computer: The problem lies with your original computer (driver, system, hardware port).

If it doesn't work on the other computer: The problem is most likely with your device or the USB cable.

3. Check the system log (Windows):

Right-click "This PC" -> "Manage" -> "Event Viewer" -> "Windows Logs" -> "System."

Check for error or warning logs around the time you plugged in the USB device; these logs will provide more specific error codes.

4. Update the motherboard chipset and USB controller drivers:

Go to the official website of your computer brand or motherboard manufacturer to download and install the latest chipset drivers. This can fundamentally resolve USB compatibility issues.

By Laser Engraver Blogs | February 24, 2026
RAY5 Series – Vision Correction Alignment Guide
RAY5 Series – Vision Correction Alignment Guide

Introduction

Before using the visual functions of the RAY5 series, a visual alignment (visual calibration) procedure must be completed. This process ensures accurate positioning and engraving precision by properly aligning the machine’s camera system with the working area.

During calibration, you will engrave four marker patterns (①②③④) onto the target material, capture an image using the built-in camera, and mark the center of each target point in the correct sequence within the software. Accurate completion of each step is essential to avoid positioning errors and ensure stable visual engraving performance.

Before starting, please ensure that no other programs are accessing the RAY5 camera.

1. Precautions Before Operation

Please read carefully before beginning:

  • Place the engraving paper within the engraving work area. A scale value of 95 is recommended.
  • Ensure no other cameras are connected, and the machine’s camera is not being used by another program.
  • During visual calibration, do not move the machine or the engraving paper. Complete all steps in one continuous process.
  • Each marker pattern supports single calibration only. For recalibration, engrave a new marker pattern.
  • Reset the machine before starting visual calibration to prevent collisions during engraving.
  • Ensure the camera lens is perpendicular to the engraving surface (use a spirit level to confirm).
  • Adjust the camera to a working distance of 550 mm from the engraving surface so the entire machine is within the field of view.
  • The engraving surface must be parallel and level to avoid calibration errors.
  • Place the support bracket in the center of the machine’s front beam.

2. Engraving the Marking Pattern

You will use the laser to engrave the target pattern onto the material and mark the center of each target.

Step 1: Enter Visual Correction Page

After connecting the RAY5, click on the camera icon that appears in the menu bar to enter the visual correction function page.

Before accessing the visual correction features page, please zoom out and move the canvas to the side so that the entire canvas is visible when the visual features page opens.

Step 2: Adjust Engraving Parameters

Enter appropriate speed and power settings to achieve moderate engraving without burning through. Increase or decrease the scaling value until the canvas can accommodate the marked pattern.

Step 3: Border Preview

Click the border preview button to display the marked pattern on the canvas, ensuring it does not exceed the canvas size.

⚠️ Important:
After modifying speed, power, or scaling parameters, you must click “Border Preview” again to synchronize and update the marking pattern on the canvas.

Step 4: Begin Engraving

Begin carving. If it's not clear enough, you can adjust the settings and run it again. Once the pattern is clearly visible and easy to see, click Next.

3. Capture the Target Image

During this process, you will capture aligned images. You may need to wait a few seconds on this screen for the camera to successfully capture the images.

When the machine's camera is detected, click the capture button. You should see the camera view displayed in the lower left of the window, with all four target points visible, and the captured image on the right, as shown below. Click Next when all four target points are clearly visible in the captured image.

4. Marking the Target Points

In this step, you need to mark each target by double-clicking the center of each target in sequence.
Move the image by holding down the spacebar and using the mouse, and zoom in or out using the scroll wheel to ensure accurate clicking on the center position. A red marker will appear each time you double-click. If you mark incorrectly, click "Undo Mark" to remove it and try again. The double-clicking sequence must follow the order (1, 2, 3, 4) shown on the marking pattern. Once all four target points are marked, click "Complete" to finish the entire process.

✅ Calibration Complete

After completing all steps, the RAY5 visual correction system will be properly aligned and ready for accurate visual engraving.

By Laser Engraver Blogs | February 24, 2026
LaserBurn Object Management: Combine/Split and Layer Lock
LaserBurn Object Management: Combine/Split and Layer Lock

Introduction

To improve editing efficiency and operational safety, the software provides two core features: Combine/split and layer lock/unlock.

The Combine/Split function allows multiple independent objects to be temporarily grouped into a single entity for unified operations or separated back into their original objects when needed. This is primarily used for batch transformations such as moving, scaling, and alignment.

The Layer Lock/Unlock function prevents accidental selection, modification, or deletion of objects on a specific layer while keeping the layer visible. It is typically used to protect completed backgrounds or reference content.

Both features use clear icons, explicit command names, and state-based dynamic interactions to ensure predictable behavior and reduce user error, especially in complex editing scenarios.

Function 1: Combine/Split

The purpose of this function is to temporarily bind multiple independent objects into a whole for operation or to disassemble the whole back into independent objects.

1. Icon and Text Design

  • Combined icons: Icons that use two or more geometric shapes connected together.

  • Split icons: Icons that use a graphic made up of multiple parts, with a clear visual cue of separation.

2. Directly use "Group" and "Split."

  • Group: Combines selected objects into a single unit, making them easier to move and transform simultaneously.

  • Split: Splits a grouped object into its original, independent objects.

3. Dynamic and Interactive Feedback

  • Top-left menu: Right-click on a selected object to dynamically display menu items based on the selected object's status.

    • When multiple independent objects are selected, the menu displays "Combine."

    • When a grouped object is selected, the menu displays "Split."

  • Changes after executing the command:

    • After executing "Combine," the control points of the selected objects disappear and are replaced by a unified control box.

    • After executing "Split," the unified control box disappears, and each sub-object's control points reappear.

  • New User Guide: When the software is first launched or when entering the drawing module, a brief reminder card indicates that multiple objects can be "combined" for easier unified management.

Function 2: Layer Lock/Unlock

This feature prevents any accidental editing (selection, moving, deletion) of all objects on a specific layer while still maintaining their visibility and is commonly used to protect completed backgrounds or reference drawings.

1. Icon and Text Design

  • Lock icon: Uses the classic closed lock icon. This is the universal lock/unlock symbol.

  • Unlock icon: Uses the open lock icon.

2. Button/Menu Text

  • Lock Layer: Locks the layer, preventing its contents from being selected or modified.

  • Unlock Layer: Unlocks the layer, allowing its contents to be edited.

3. Dynamic and Interactive Feedback

  • On-canvas behavior limitations: When a user attempts to click, select, or drag an object on a locked layer, no action is taken.

By Laser Engraver Blogs | February 9, 2026
How to Connect to the Nano Pro Using AP or STA Mode
How to Connect to the Nano Pro Using AP or STA Mode

Introduction

This article explains how to connect the Nano Pro to your mobile device via Wi-Fi using AP mode or STA mode. It also covers how to install the LaserBurn app and choose the appropriate connection mode for stable and efficient operation.

1.  Download and install

Please search for "LaserBurn" in Google Play or visit the address below to download for Android system

https://play.google.com/store/search?q=LaserBurn&c=apps

Please search for "LaserBurn" in the Apple Store or visit the address below to download for the iOS system:

https://apps.apple.com/us/app/laserburn/id6451089363

Or download from LONGER’s official website:

https://www.longer3d.com/pages/longer-app

For complex grayscale engraving, it is recommended to transfer the image to the mobile phone album and import it into the app for engraving, which will have a better effect.

2.   Connect to WIFI in AP mode

Note: There are two modes, AP and STA, to connect Nano Pro via WIFI.  The difference is that in AP mode the phone will have no network, but in STA mode the phone can maintain a network.

1) Run the LaserBurn app and enter the Home page; click the not connected icon When there is an ‘Allow LaserBurn to access this device’ prompt, you need to click ‘Allow only while in use’; otherwise, you may not be able to search for the WiFi of Nano.

 

2) Open the WLAN settings on your phone, search for the WIFI starting with LongerLaser_Nano, and input the password 12345678 to connect to the wifi of Nano Pro. If the WIFI of LongerLaser_Nano cannot be found, please long press the WIFI reset button on the back of the Nano Pro until you can hear three buzzers to reset the WIFI, then search the WIFI list again. 

3) Enter the IP address 192.168.0.1 below and click Connect. There will be a reminder that the ‘connection succeeded’ when the connection is successful.

 

3.   Connect to WIFI in STA mode

1)  Open the WLAN settings on your phone.  Run  LaserBurn  and

Enter the Home page, click the not connected icon , enter the network configuration page, and click Add  in the upper right corner.

 

2) Click Scan device, search for the WIFI starting with LongerLaser_Nano, and input the password 12345678 to connect to the WIFI of Nano Pro.

 

3) After the connection is successful, return to LaserBurn, select Set STA mode to connect to the WIFI of the router (only supports 2.4G), and enter the password.  The indicator light in front of Nano Pro will switch to an orange breathing light during connecting and then will turn green if the connection is successful. Then click the app to enter the next step; the network progress will reach 60%. And the indicator light will remain orange if the connection fails; click the app to return to the first step and start again.

4) Back to LaserBurn, click Connect network at the bottom of the page, connect the phone to the same WIFI as the STA mode in the previous step, and wait for network configuration. When the connection is successful and the network process reaches 100%, click FINISH at the bottom to return to the device list interface.

Note: After the device is connected, when you click anywhere on the device list label, the machine will disconnect; conversely, if you click when the device is disconnected, the phone will automatically connect to the device

By Laser Engraver Blogs | February 7, 2026
How to Simultaneously Engrave and Cut on Wood Using LightBurn Layers
How to Simultaneously Engrave and Cut on Wood Using LightBurn Layers

To achieve both engraving and cutting on wood, you can leverage the Layer Function in LightBurn. Here's how:

1. Separate Engraving and Cutting with Layers
In LightBurn, you can create different layers for engraving and cutting. Each layer is represented by a different color, which helps in organizing your work.

2. Assign Different Parameters for Each Layer
Once you've separated your design into distinct layers, you can assign specific parameters for engraving and cutting:

    • Use low power and fast speed for the engraving layer.
    • Use high power and slow speed for the cutting layer.

3. Process Each Layer Sequentially
By assigning different colors to each layer (for example, blue for engraving and red for cutting), LightBurn will handle each layer with its designated settings, allowing you to simultaneously engrave and cut on the wood in one go.

By following these steps, you can efficiently manage both engraving and cutting tasks on your wood projects, saving time and effort!

By Laser Engraver Blogs | February 6, 2026
3D Wood Carving and Relief Sculpture Guide for Nano Duo
3D Wood Carving and Relief Sculpture Guide for Nano Duo

Preface

This document introduces the operational procedures and precautions for performing 3D wood carving and relief engraving using the Nano Duo laser engraving machine. It covers laser equipment safety guidelines, material selection and preparation, software setup, and reference engraving parameters, aiming to help users quickly master basic 3D wood carving techniques and achieve consistent, high-quality results.

Important Safety Warning:

Operating laser equipment poses serious safety risks (fire, burns, irreversible eye damage).

Before operation, you must:

1. Wear specialized laser safety glasses.

2. Ensure the work area is well-ventilated.

3. Never leave the equipment unattended while it is operating.

4. Strictly follow all safety regulations provided by the equipment manufacturer.

equipment:

Laser Equipment: 20W 450nm Blue Diode Laser

Compatible Machine Model: Nano Duo (features 20W 450nm and 2W 1064nm dual lasers)

Compatible Laser Control Software: (e.g., LaserBurn, LightBurn, LaserGRBL) LaserBurn is recommended.

Framing Function: Uses real-time preview to better ensure accurate laser positioning for engraving.

Focusing Method: Uses dual red light positioning for quick and easy visual alignment of two points.

Air Assist System: (Air pump strongly recommended. Function: Blows away smoke and dust, reduces charring.)

Materials preparation:

Wood:  Light-colored hardwoods with even grain are recommended (basswood, cherry, maple, walnut, sapele), avoiding woods with excessive resin or dark colors (low blue light absorption). The thickness must be greater than the expected maximum engraving depth.

Test material: Small pieces of the same type of wood (for parameter testing)

software:

Laser control software (LaserBurn recommended): Import grayscale images, set layer engraving parameters.

LaserBurn operation:

1. Import Grayscale Image: Import the grayscale image into LaserBurn.

2. Set Working Area: Define the engraving size and position to match the actual workpiece.

3. Speed: Starting test value (Sapele wood): 8000-12000 mm/min (requires extensive testing). Slower speeds result in deeper engraving, but also increase the risk of overheating. (Parameters used in the work: 10000 mm/min)

4. Power: Starting test value: 70% - 100%. The actual engraving power is much lower than this. Higher power results in deeper engraving, but also increases the risk of charring. (Parameters used in the work: 80%)

5. Line Interval: Affects detail and efficiency. Starting value: 0.025mm - 0.1mm. Smaller intervals result in finer detail but longer processing time. (Parameters used in the work: 0.05mm)

6. Scan Angle: Usually 45 degrees or alternating 0/90 degrees. (Parameters used in the work: 0 degrees)

7. Multi-layer Engraving: From high to low or from deep to shallow. Increasing the number of engraving layers helps reduce charring. (Layers used in the work: 1 layer; more layers can be added depending on the required depth)

8. Image Processing: Increase contrast to make the engraving area clearer. (Parameters used in the work: Contrast 100%)

9. Simulation Preview: Use the software's simulation function to preview the engraving path and effect.

10. Border Preview: Ensure the engraving area is within the material area.

Example image:

Workpiece preparation and positioning

1. Clean the wood surface, ensuring it is smooth and even.

2. Securely fix the wood to the workbench.

3. Use a dual red laser pointer to precisely align the engraving material, ensuring the optimal focal distance from the surface.

(The optimal distance is 220mm; holding a ruler against the laser head is recommended.)

Adjustment strategies:

Engraving too shallow/lacking depth: Increase power/decrease speed/increase the number of layers.

Edges charred/overburnt: Decrease power/increase speed/increase air assist.

Details blurry: Check if the focal length is accurate/reduce the line spacing.

Uneven surface/streaks: Adjust the fill angle/optimize the line spacing.

Finely adjust the speed, power, line spacing, and layer parameters in the software based on the test results.

Perform engraving:

1. Reconfirm that safety measures are in place (safety glasses, ventilation, fire extinguisher, no unattended operation).

2. Activate smoke extraction and dust removal system and air assist.

3. Send the job to the laser controller via the software.

4. Monitor continuously: Closely observe the engraving process, paying particular attention to any open flames or abnormal smoke, and be prepared to press the stop button at any time.

5. After the engraving is complete, wait for the laser head to stop moving completely before turning off the equipment.

Post-processing:

1. Carefully remove the workpiece (it may be hot or covered in dust).

2. Use a soft brush or damp cloth (with caution) to remove surface dust.

3. (Optional) Sand, oil, wax, or paint as needed (especially on charred edges) to enhance the finish and protect the surface.

Works on display:

Original image      

   

 Sapele wood    

        

Solid wood

By Laser Engraver Blogs | February 4, 2026
How to set up multi-layer management in Lightburn
How to set up multi-layer management in Lightburn

Core Concept: What are LightBurn layers?

You can think of LightBurn layers as transparent acetate sheets. Each sheet contains different graphics (such as cutting lines, engravings, marking lines, etc.), and each sheet is assigned different processing parameters (power, speed, number of passes, etc.). Finally, stacking all the sheets together creates a complete artwork, and the laser processes each layer in the order you set.


1. Location and Interface of the Layer Panel

1.1 Finding the Layer Panel

On the right side of the software interface, find the "Cuts/Layers" panel. If it's not visible, click Window > Cuts/Layers from the top menu bar to make sure it's selected.

1.2 Understanding the Interface

  1. Layer List: Displays the name, color, status, and parameter previews of all layers.

  2. Eye Icon: Controls layer visibility. Click to hide/show a layer.

  3. Lock Icon: Locks a layer. Once locked, no objects on that layer can be selected or edited.

  4. Color Block: Represents the display color of all objects on that layer (for onscreen differentiation only, does not affect actual engraving).

  5. Parameter Bar: Displays the default processing mode (e.g., cutting, scanning/engraving) and key parameters (power, speed) for that layer.


2. Basic Layer Management

2.1 Creating a New Layer

When you import a file, a layer will be added.

  • It's recommended that you name the new layer, such as "Cut Layer," "Image Engraving," "Vector Engraving," or "Marker Layer." Giving your layer a descriptive name is a good practice!

2.2 Setting the Current Working Layer

  • In the Layers panel, click the layer you want to draw on. This layer will highlight, indicating it's the active layer.

  • From now on, all new shapes you create using the drawing tools will automatically be placed on this active layer.

2.3 Setting the Layer Color

  • After selecting a layer, you can select a new display color for it in the lower-left corner. This helps you quickly distinguish different layers visually.

2.4 Hiding and Locking Layers

  • Click the "eye" icon to hide a layer. Hidden layers won't be engraved, making them ideal for temporarily shutting down certain processes or keeping backups.

  • Click the "lock" icon to lock a layer. This prevents accidental selection or modification, which is very useful for complex shapes.

2.5 Deleting a Layer

  • Select a layer and press Delete on your keyboard to delete it.

  • Note: Deleting a layer will also delete all objects on that layer.


3. Setting Processing Parameters for Different Layers

This is the essence of layer management—assigning independent laser parameters to each layer.

3.1 Selecting a Layer: In the Layers panel, simply click the layer for which you want to set parameters.

3.2 Setting Parameters: The toolbar at the top of the software or the "Cutting/Engraving" parameter panel on the right will display the parameters for the currently selected layer.

3.3 Tool: Select a processing method, such as Cutting, Scanning (Engraving), Filling, or Image.

3.4 Power/Speed/Times: Set the desired process for the layer. For example:

  • Cutting layer: Tool = Cut, Power = 100%, Speed = 200 mm/min, Times = 1
  • Vector Engraving layer: Tool = Scan (Engrave), Power = 50%, Speed = 6000 mm/min, Line Count = 0.06 mm
  • Image Engraving layer: Tool = Image, Mode = Grayscale, Power = 60%, Speed = 6000 mm/min, Line Count = 0.06 mm

3.5 Parameter Inheritance: All objects created on this layer will use these default parameters. You can also select individual objects and adjust them, which will override the layer's default settings.


4. Controlling the Processing Order: Layer Order

The laser machine's default processing order is top to bottom.

4.1 Adjusting the layer order: In the Layers panel, simply drag layers to change their top-to-bottom order.

4.2 Best Practice Order (generally):

  • First: Internal engraving/shallow engraving (such as image engraving or fine text engraving)
  • Middle: External engraving/deep engraving (such as a vector engraving border)
  • Last: Cutting (Ensure all engravings are complete before removing the part from the material to prevent shifting)

5. Practical Workflow Example: Creating an Engraved Keychain

Suppose you want to create a wooden keychain that includes engraving a photo and cutting the outer edges.

5.1 Planning:

  • This requires two steps: photo engraving and contour cutting.

5.2 Creating Layers:

  • Import the file and create a new layer, name it "Photo Engraving," and set the color to blue.
  • Import it again and create a second layer, name it "Contour Cutting," and set the color to red.

5.3 Setting Parameters:

  • Select the layer, set the tool to Engraving and Filling, and set the appropriate power and speed (e.g., 60% power, 6000 mm/min speed).
  • Select the "Contour Cutting" layer, set the tool to Cutting, and set the cutting parameters (e.g., 100% power, 200 mm/min speed).

5.4 Assigning Objects:

  • Make sure the "Photo Engraving" layer is the active layer.

  • On the "Contour Cutting" layer, draw the outline of the keychain (e.g., a circle or a custom shape).

5.5 Adjusting the Order:

  • In the Layers panel, make sure the "Photo Engraving" layer is above the "Contour Cutting" layer. This way, the laser will engrave the fill first, then cut.

5.6 Preview and Export:

  • Use the Preview function (computer icon) to check the results and order. You should see the blue areas engraved first, followed by the red areas cut.

  • Click Engrave Directly to Device, and LightBurn will automatically export all layer data to the laser in the correct order and parameters.

By Laser Engraver Blogs | February 3, 2026
Fixing the Nano Duo Screen Stuck on the LONGER Logo
Fixing the Nano Duo Screen Stuck on the LONGER Logo

If your Nano Duo screen remains stuck on the LONGER logo during startup, the issue can usually be resolved by reflashing the firmware. Follow the steps below carefully to restore normal operation.

1.Prepare tools
Use the flash_download_tool_3.9.5.exe tool

2.Preparing firmware
firmware_grbl.bin

3.Open the flash_download_tool_3.9.5.exe tool, select ESP32-S3, and click OK.

4.After entering the homepage, click the three dots in the middle, find the prepared firmware and open it. The second step is to change the firmware to: 0x0, select the COM port corresponding to the machine's port number, and select BAUD: 912600. Click ERASE and wait for the status to complete. Then click START and wait for the status to display FINISH. Finally, power off and restart the machine.

Conclusion

That’s the complete procedure for resolving the issue where the Nano Duo screen is stuck displaying the LONGER logo. The success of this process mainly depends on accurate parameter configuration and following the flashing steps in the correct order. As long as each setting is verified carefully and the sequence is strictly followed, the firmware recovery can be completed smoothly and safely.

By Laser Engraver Blogs | January 14, 2026