Search models, users, collections, and posts
Recommendation
Creator’s Club
Creators & Fans
Show Your Make
Off Topic
Post Details
Home Assistant to WLED: 3D Printer Progress on LED
Home Assistant to WLED: 3D Printer Progress on LED

Want to track your 3D printer's progress at a glance—no app opening, no screen tapping? I rigged up a 16x16 LED grid and an ESP32 I had lying around. Now, whenever a print starts, it shows real-time progress directly on the panel via WLED and Home Assistant.

Here’s exactly how to set this up.

 

🛠️ Requirements

Must-Have:

  • ESP32 with WLED installed
  • WLED added to Home Assistant
  • A 16x16 (or any size) LED grid panel wired to ESP32
  • Bambu Lab Integration installed in Home Assistant

Optional but helpful:

  • ChatGPT (to help out with coding if you get stuck)

 

✅ Step-by-Step Setup Guide

Step 1: Add REST Command to Configuration

We’ll create a REST command in configuration.yaml that sends custom text updates to your WLED device.

 

Open your configuration.yaml and add:

 

# WLED TEXT CHANGER
rest_command:
 wled_text:
   url: "http://WLED_IP/json/state"
   method: POST
   content_type: "application/json"
   payload: ‘{"seg": [{"n": "{{ text }}"}]}’

⚠️ Replace WLED_IP with your actual WLED device IP address and fully restart Home Assistant afterwards.

 

Step 2: Create a Text Helper

We’ll need a text input field in Home Assistant to dynamically hold and send text to WLED.

  1. Go to Settings → Devices & Services → Helpers
  2. Click “+ Create Helper”
  3. Select “Text”
  4. Name it: Text_WLED_TextBox
  5. Set Display mode to Text
  6. Pick an icon if you want

 

Step 3: Create an Automation to Update WLED

This automation grabs the printer’s progress and sends it to your WLED grid.

  1. Go to Settings → Automations & Scenes
  2. Click “+ Create Automation”
  3. Choose “Start with an empty automation”
  4. Set a name like: WLED_PrintProgressUpdate
  5. Trigger ("When"):
    • Choose your Bambu printer progress sensor.
    • Example: sensor.a1_000000000000000_print_progress
  6. Action ("Then do"):
    • Choose: Call Service
    • Service: rest_command.wled_text
    • YAML mode:

service: rest_command.wled_text
data:
 text: “{{ states('sensor.a1_000000000000000_print_progress') }}%”

⚠️ Adjust sensor.a1_000000000000000_print_progress to match your exact printer entity.

 

Step 3a: Test the WLED Text Manually

Let’s verify WLED accepts text commands.

  1. Go to Developer Tools → Actions
  2. Click “Go to YAML mode”
  3. Paste this and hit “Call Service”:

service: rest_command.wled_text
data:
 text: “Hello WLED!”

If you see “Hello WLED!” scroll across your LED panel, everything’s working.

 

 

Final Notes / Checklist

  • ESP32 is flashed with WLED and connected to the LED panel
  • WLED is configured in Home Assistant
  • Bambu printer entity is available and updating
  • REST command is in configuration.yaml (restart required after adding)
  • Automation is correctly wired to the printer progress sensor
  • You can test and confirm text displays on WLED

For an awesome 16x16 LED grid print, check out this one. Been using it myself and the diffusion is good!

 

This is my first guide and I did most of this from memory. If something is not working or missing, feel free to let me know and will try to help you out.

Share
1
1
0
Comment (1)
@DFISH. Cool!
0
Reply
No more data
Trend
PrintClinic
HideAndSeekChallenge
Weekly Roundup
1
the Great Benchy Nations
2.7 k
2
Theprintertribes
1.5 k
3
Questions
1.4 k
4
Newmodel
775
5
Face Reveal
583
6
Needhelp
573
7
Contests
432