Giter Site home page Giter Site logo

wled_klipper's Introduction

LED Controls for Your Klipper/Moonraker Machine Using WLED

When reading this document, please keep in mind that I figured this out through trial and error. Your results may vary and all of this information is purely for entertainment purposes. My free opinions are worth to you exactly what you're paying for them. Of course, if you pay, it's probably worth a little less than what you paid.

Anyway, moving on, I spent quite a bit of my time trying to understand how I could add some simple neopixels to my RatRig printer. It ended up actually being pretty simple but it sure didn't seem that way at the time.

I can tell you that it wasn't easy. Lots of information about different things related to neopixels, but not much for how to implement with my printer OS, especially at specific points during the printing cycle. I hope to clear that up for readers of this file and to make the process as as painless as possible. I'm a RatOS user, which is a branch of Klipper, so it should work for most klipper machines. I would like to point out that the method below is based on macros contained in the cfg files for Klipper and called that way in start/end print macros. Once you have built your control macros, you could just as easily call them in your slicer Start G-Code and End G-Code. I chose the method I did since I bounce back and forth on slicers and also computers that I slice and send print files from. It's just easier to me to manage it in one place.

I have based my LED control system on two control boards, the ESP 8266 Dev Board and the ESP32. Either can be flashed with WLED and are great options for controlling your LEDs. I'm currently using both on my machines. They're cheap so I just buy extra.

Stuff You'll Need

I'm not suggesting any of the following hardware, just offering up options. Make your own choices.

  • Neopixels of your choice. Be sure they're individually addressable.
  • Some wire to connect your LEDs to your controller. I use this or this, but you should use what you're comfortable using. My advice is worth what you pay for it.
  • ESP 8266 Dev Board
  • ESP 32
  • Flashing Software
  • Simple hand tools for cutting and soldering. Crimping tools if you decide to use crimp terminals to connect to the board.
  • Cable to connect the board to your PC
  • A case to house your controller for ease of mounting. Note that if you use this for an ESP32, you should print X axis at 102% for a better fit. Here's a local link to the same files, credit to Rainer Winkel on Thingiverse: Case
  • A machine utilizing Mainsail / Klipper (Mainsail has built-in support for WLED)

Getting Started

alt text

Let's get started! The first thing you need to do is go over to Tyson Nichols' great site and follow his tutorial on installing WLED on an ESP 8266. Just in case, I added a PDF version of his page in the files section.

It's a great explanation of how to make everything talk and work together to get WLED up and running for your control system.

No need for me to reinvent the wheel when his method works so well. I would however suggest that if you're using an ESP32 instead of the 8266 dev board, you go to here and install WLED. It's much simpler. Web Installer

Assuming everything is now wired and programmed, it's time to start the integration with Moonraker and Klipper...

Now is the best time to go to the WLED app and create your custom profiles that will be called by Klipper later. When you open the app this is what you should see: alt text

The first step will be to choose a color palette or a single color. That is from the home screen and you can choose up to 3 colors that can be blended or use a predefined palette.

alt text

After you choose your custom colors or a predefined set, go to the next tab, for Effects. This is where you choose the animations for your LEDs. Play around with them and find something you like. Once you're happy with the effects, it's time to move over to save a custom profile.

Note:If you feel the need, you can go to the Segment tab and define effects for specific sections of your LED strings. I apply everything to the entire strings so I don't use this.

alt text)

Going to the Presets tab, you should see this screen:

alt text)

The first thing to do here is to click the Create preset button.

You should then see this screen:

alt text

The most important section of this screen and process is the "Save to ID" number of the presets. It's how we will call the effects in the klipper macros so be sure and keep your numbering simple.I use a simple name to remind me what's what for the Nee preset section and make the Quick load label the same as the Save to ID number because I'm not smart and that's simple. It should also be noted that the preset will be created based on the effects and colors you've chosen on the other tabs. This just saves them. Simple.

Eventually you'll end up with something like this:

alt text

These are my saved presets for the string of LEDs in the base of my printer. I would suggest that you take the time to make a preset for "On' and another for "Off" that you can use as well. My "On" is just white light for working and the "Off" is clearly no light at all. It comes in handy for the end print stuff later.

Now it's time to start incorporating these presets in Klipper. First you need to let Mainsail know you've got some LEDs attached that crave being controlled.

Moonraker

I'm no expert, but the following is what has worked for me. If you have a better way to do it, then knock yourself out.

First, we need to let Moonraker know that we have some LEDs that are being controlled by WLED. We need to edit the Moonraker.conf file with the following information:

[wled chamber]
type: http
address: 192.168.0.45
initial_red: 0.5
initial_green: 0.4
initial_blue: 0.3
chain_count: 42

For your specific installation, you should change the name from 'chamber' to whatever you want your lights to be called. For example, if you wanted to call them 'frame' just change to

[wled frame]

I use the http type because I'm utilizing the built-in wifi on the controller. You can find the address on the WLED app and input it in the address section

alt text

I don't use the red, green, sections since I setup the WLED app to auto start with a saved profile, but you can do what suits you here. These values are based on a max of 1.

The chain count is very important for your effects to work properly. The controller needs to know how many neopixels are on your string in order to work properly. Just count them and put the number here.

Repeat this process for every controller you install. I curently have 4 on my printer controlling bed lights, upper work lights, an accent light on the back panel and a single on the hotend cover that changes colors with temps. I'm sure there's a way to utilize one controller for multiple strigns but no idea how to make that work. This method works for me.

That's it for Moonraker. Once you make the updates, save your new config file and get ready to move over to Klipper for the magic...

Klipper

In order to control the WLED, you will need to modify your printer.cfg file with macros to control the LEDs and also update your start print and end print macros. Also, if you're a RatOS user, please don't modify the files in your config folder. Copy your existing start and end print macro sections from the macros.cfg file and paste in to your printer.cfg file so you can always revrt back to the original version without a lot of hassle. Ask me how I know...

Below are my Start and End Print macros including the calls for the macros specific to the WLED presets:

[gcode_macro START_PRINT]
description: Start print procedure, use this in your Slicer.
gcode:
  CLEAR_PAUSE
  SAVE_GCODE_STATE NAME=start_print_state
  Breathe_On
  # Metric values
  G21
  # Absolute positioning
  G90 
  # Set extruder to absolute mode
  M82
  # Home if needed
  MAYBE_HOME
  M117 Heating bed...
  RESPOND MSG="Heating bed..."
  led_heating
  # Wait for bed to heat up
  M190 S{params.BED_TEMP|default(printer.heater_bed.target, true) }
  # Run the customizable "AFTER_HEATING_BED" macro.
  _START_PRINT_AFTER_HEATING_BED
  # Run the customizable "BED_MESH" macro
  led_mesh
  _START_PRINT_BED_MESH
  # Start heating extruder
  M104 S{params.EXTRUDER_TEMP|default(printer.extruder.target, true) }
  # Run the customizable "PARK" macro
  led_printing
  _START_PRINT_PARK
  # Wait for extruder to heat up
  M117 Heating Extruder...
  RESPOND MSG="Heating Extruder..."
  led_heating
  M109 S{params.EXTRUDER_TEMP|default(printer.extruder.target, true) }
  # Run the customizable "AFTER_HEATING_EXTRUDER" macro.
  _START_PRINT_AFTER_HEATING_EXTRUDER
  M117 Printing...
  RESPOND MSG="Printing..."
  RESTORE_GCODE_STATE NAME=start_print_state
  led_printing
  # Set extrusion mode based on user configuration
  {% if printer["gcode_macro RatOS"].relative_extrusion|lower == 'true' %}
    M83
  {% else %}
    M82
  {% endif %}
  G92 E0

[gcode_macro END_PRINT]
description: End print procedure, use this in your Slicer.
gcode:
  SAVE_GCODE_STATE NAME=end_print_state
  _END_PRINT_BEFORE_HEATERS_OFF
  TURN_OFF_HEATERS
  _END_PRINT_AFTER_HEATERS_OFF
  _END_PRINT_PARK
  led_off
  Breathe_Off
  # Clear skew profile if any was loaded.
  {% if printer["gcode_macro RatOS"].skew_profile is defined %}
    SET_SKEW CLEAR=1
  {% endif %}
  # Steppers off
  M84
  # Part cooling fan off
  M107
  M117 Done :)
  RESPOND MSG="Done :)"
  RESTORE_GCODE_STATE NAME=end_print_state

Here is a screenshot with the macros highlighted:

alt text

Of course, you can't call macros that you haven't made yet, so let's work on those now...

First, you'll need to add this in your printer.cfg file to activate the LEDs once you make the necessary macros:

[gcode_macro WLED_ON]
description: Turn WLED strip on using optional preset and resets led colors
gcode:
  {% set strip = params.STRIP|default("chamber")|string %}
  {% set preset = params.PRESET|default(4)|int %}

  {action_call_remote_method("set_wled_state",
                             strip=strip,
                             state=True,
                             preset=preset)}

Then as an example for the macros required to call each of your presets, use the following format:

[gcode_macro led_heating]
gcode:
  WLED_ON STRIP=chamber PRESET=3

This macro assumes a couple things: first that your LED string is named "chamber" in the moonraker.conf file and that the preset you want to initialize is number 3 from your "Saved to ID" number in WLED. If you chose a different name in Moonraker when you added the WLED entry, then that's the name to use in the macro. Also, if you want to call a different preset, just use the corresponding number for that preset.

Something to note: If you decide to wire your ESP module directly to 5V instead of using the wall-wart, just wire the + and - from you chosen power source in parallel to your wiring to neopixels. Something like this: (HIGHLY professional drawing credit to Max.#6343 from Discord)

alt text

Hopefully this helps you light up your project. If I can be of help, please reeach out to me over at discord, Glipski#1809. I'll try and answer questions. Just remember that I'm not very smart.

An example:

IMG_3819.mov
IMG_3822.mov

Contributing

If this helped you at all, please feel free to Buy Me a Coffee, or Beer

wled_klipper's People

Contributors

gliptopolis avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

wled_klipper's Issues

Issue with macro

I'm at the part where I enter the macros like this:

#####################################################################
#	LED Control
#####################################################################

[gcode_macro heating_led]
gcode:
  WLED_ON STRIP=chamber PRESET=1

[gcode_macro mesh_led]
gcode:
  WLED_ON STRIP=chamber PRESET=2

[gcode_macro off_led]
gcode:
  WLED_ON STRIP=chamber PRESET=3

[gcode_macro on_led]
gcode:
  WLED_ON STRIP=chamber PRESET=4

[gcode_macro qgl_led]
gcode:
  WLED_ON STRIP=chamber PRESET=5

When I try to run the macro to turn on the lights, for example, I get the error: Unknown command: "WLED_ON".

Is there a different gcode command to use?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.