added klipper usermod
This commit is contained in:
parent
50875d5759
commit
0ab35a3ca3
23
usermods/usermod_v2_klipper_percentage/readme.md
Normal file
23
usermods/usermod_v2_klipper_percentage/readme.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Klipper Percentage Usermod
|
||||||
|
This usermod polls the Klipper API every 10s for the progressvalue.
|
||||||
|
|
||||||
|
A corresponding curl command would be:
|
||||||
|
```
|
||||||
|
curl --location --request GET 'http://[]/printer/objects/query?virtual_sdcard=progress'
|
||||||
|
```
|
||||||
|
## Usage
|
||||||
|
Compile the source with the buildflag `-D USERMOD_KLIPPER_PERCENTAGE` added.
|
||||||
|
|
||||||
|
You can also use the WLBD bot in the Discord by simply extending an exsisting build enviroment:
|
||||||
|
```
|
||||||
|
[env:esp32klipper]
|
||||||
|
extends = env:esp32dev
|
||||||
|
build_flags = -D USERMOD_KLIPPER_PERCENTAGE
|
||||||
|
```
|
||||||
|
|
||||||
|
-----
|
||||||
|
Author:
|
||||||
|
|
||||||
|
Sören Willrodt
|
||||||
|
|
||||||
|
Discord: Sören#5281
|
@ -0,0 +1,202 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "wled.h"
|
||||||
|
|
||||||
|
class klipper_percentage : public Usermod
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
unsigned long lastTime = 0;
|
||||||
|
String ip = "192.168.25.207";
|
||||||
|
WiFiClient wifiClient;
|
||||||
|
char errorMessage[100] = "";
|
||||||
|
int printPercent = 0;
|
||||||
|
int direction = 0; // 0 for along the strip, 1 for reversed direction
|
||||||
|
|
||||||
|
static const char _name[];
|
||||||
|
static const char _enabled[];
|
||||||
|
bool enabled = false;
|
||||||
|
|
||||||
|
void httpGet(WiFiClient &client, char *errorMessage)
|
||||||
|
{
|
||||||
|
// https://arduinojson.org/v6/example/http-client/
|
||||||
|
// is this the most compact way to do http get and put it in arduinojson object???
|
||||||
|
// would like async response ... ???
|
||||||
|
client.setTimeout(10000);
|
||||||
|
if (!client.connect("192.168.25.209", 80))
|
||||||
|
{
|
||||||
|
strcat(errorMessage, PSTR("Connection failed"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Send HTTP request
|
||||||
|
client.println(F("GET /printer/objects/query?virtual_sdcard=progress HTTP/1.0"));
|
||||||
|
client.println(F("Host: 192.168.25.209"));
|
||||||
|
client.println(F("Connection: close"));
|
||||||
|
if (client.println() == 0)
|
||||||
|
{
|
||||||
|
strcat(errorMessage, PSTR("Failed to send request"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Check HTTP status
|
||||||
|
char status[32] = {0};
|
||||||
|
client.readBytesUntil('\r', status, sizeof(status));
|
||||||
|
if (strcmp(status, "HTTP/1.1 200 OK") != 0)
|
||||||
|
{
|
||||||
|
strcat(errorMessage, PSTR("Unexpected response: "));
|
||||||
|
strcat(errorMessage, status);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Skip HTTP headers
|
||||||
|
char endOfHeaders[] = "\r\n\r\n";
|
||||||
|
if (!client.find(endOfHeaders))
|
||||||
|
{
|
||||||
|
strcat(errorMessage, PSTR("Invalid response"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
void setup()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void connected()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop()
|
||||||
|
{
|
||||||
|
|
||||||
|
if (WLED_CONNECTED)
|
||||||
|
{
|
||||||
|
if (millis() - lastTime > 10000)
|
||||||
|
{
|
||||||
|
httpGet(wifiClient, errorMessage);
|
||||||
|
if (strcmp(errorMessage, "") == 0)
|
||||||
|
{
|
||||||
|
PSRAMDynamicJsonDocument klipperDoc(4096); // in practive about 2673
|
||||||
|
DeserializationError error = deserializeJson(klipperDoc, wifiClient);
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
strcat(errorMessage, PSTR("deserializeJson() failed: "));
|
||||||
|
strcat(errorMessage, error.c_str());
|
||||||
|
}
|
||||||
|
printPercent = (int)(klipperDoc["result"]["status"]["virtual_sdcard"]["progress"].as<float>() * 100);
|
||||||
|
//DEBUG_PRINTLN(errorMessage);
|
||||||
|
DEBUG_PRINT("Percent: " );
|
||||||
|
DEBUG_PRINTLN((int)(klipperDoc["result"]["status"]["virtual_sdcard"]["progress"].as<float>() * 100));
|
||||||
|
DEBUG_PRINT("LEDs: " );
|
||||||
|
DEBUG_PRINTLN(strip.getLengthTotal() * printPercent / 100);
|
||||||
|
}
|
||||||
|
lastTime = millis();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void addToConfig(JsonObject &root)
|
||||||
|
{
|
||||||
|
JsonObject top = root.createNestedObject("Klipper Printing Percentage");
|
||||||
|
top["Enabled"] = enabled;
|
||||||
|
top["Klipper IP"] = ip;
|
||||||
|
top["Direction"] = direction;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
bool readFromConfig(JsonObject &root)
|
||||||
|
{
|
||||||
|
// default settings values could be set here (or below using the 3-argument getJsonValue()) instead of in the class definition or constructor
|
||||||
|
// setting them inside readFromConfig() is slightly more robust, handling the rare but plausible use case of single value being missing after boot (e.g. if the cfg.json was manually edited and a value was removed)
|
||||||
|
|
||||||
|
JsonObject top = root["Klipper Printing Percentage"];
|
||||||
|
|
||||||
|
bool configComplete = !top.isNull();
|
||||||
|
configComplete &= getJsonValue(top["Klipper IP"], ip);
|
||||||
|
configComplete &= getJsonValue(top["Enabled"], enabled);
|
||||||
|
configComplete &= getJsonValue(top["Direction"], direction);
|
||||||
|
return configComplete;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* addToJsonInfo() can be used to add custom entries to the /json/info part of the JSON API.
|
||||||
|
* Creating an "u" object allows you to add custom key/value pairs to the Info section of the WLED web UI.
|
||||||
|
* Below it is shown how this could be used for e.g. a light sensor
|
||||||
|
*/
|
||||||
|
void addToJsonInfo(JsonObject &root)
|
||||||
|
{
|
||||||
|
JsonObject user = root["u"];
|
||||||
|
if (user.isNull())
|
||||||
|
user = root.createNestedObject("u");
|
||||||
|
|
||||||
|
JsonArray infoArr = user.createNestedArray(FPSTR(_name));
|
||||||
|
String uiDomString = F("<button class=\"btn btn-xs\" onclick=\"requestJson({");
|
||||||
|
uiDomString += FPSTR(_name);
|
||||||
|
uiDomString += F(":{");
|
||||||
|
uiDomString += FPSTR(_enabled);
|
||||||
|
uiDomString += enabled ? F(":false}});\">") : F(":true}});\">");
|
||||||
|
uiDomString += F("<i class=\"icons");
|
||||||
|
uiDomString += enabled ? F(" on") : F(" off");
|
||||||
|
uiDomString += F("\"></i>");
|
||||||
|
uiDomString += F("</button>");
|
||||||
|
infoArr.add(uiDomString);
|
||||||
|
}
|
||||||
|
|
||||||
|
void addToJsonState(JsonObject &root)
|
||||||
|
{
|
||||||
|
JsonObject usermod = root[FPSTR(_name)];
|
||||||
|
if (usermod.isNull())
|
||||||
|
{
|
||||||
|
usermod = root.createNestedObject(FPSTR(_name));
|
||||||
|
}
|
||||||
|
usermod["on"] = enabled;
|
||||||
|
}
|
||||||
|
void readFromJsonState(JsonObject& root)
|
||||||
|
{
|
||||||
|
JsonObject usermod = root[FPSTR(_name)];
|
||||||
|
if (!usermod.isNull()) {
|
||||||
|
if (usermod[FPSTR(_enabled)].is<bool>()) {
|
||||||
|
enabled = usermod[FPSTR(_enabled)].as<bool>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* handleOverlayDraw() is called just before every show() (LED strip update frame) after effects have set the colors.
|
||||||
|
* Use this to blank out some LEDs or set them to a different color regardless of the set effect mode.
|
||||||
|
* Commonly used for custom clocks (Cronixie, 7 segment)
|
||||||
|
*/
|
||||||
|
void handleOverlayDraw()
|
||||||
|
{
|
||||||
|
if (enabled)
|
||||||
|
{
|
||||||
|
if (direction == 0) // normal
|
||||||
|
{
|
||||||
|
for (int i = 0; i < strip.getLengthTotal() * printPercent / 100; i++)
|
||||||
|
{
|
||||||
|
strip.setPixelColor(i, strip.getSegment(0).colors[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else // reversed
|
||||||
|
{
|
||||||
|
for (int i = 0; i < strip.getLengthTotal() * printPercent / 100; i++)
|
||||||
|
{
|
||||||
|
strip.setPixelColor(strip.getLengthTotal() - i, strip.getSegment(0).colors[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getId() allows you to optionally give your V2 usermod an unique ID (please define it in const.h!).
|
||||||
|
* This could be used in the future for the system to determine whether your usermod is installed.
|
||||||
|
*/
|
||||||
|
uint16_t getId()
|
||||||
|
{
|
||||||
|
return USERMOD_ID_KLIPPER;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const char klipper_percentage::_name[] PROGMEM = "Klipper Percentage";
|
||||||
|
const char klipper_percentage::_enabled[] PROGMEM = "enabled";
|
@ -96,6 +96,7 @@
|
|||||||
#define USERMOD_ID_ANALOG_CLOCK 33 // Usermod "Analog_Clock.h"
|
#define USERMOD_ID_ANALOG_CLOCK 33 // Usermod "Analog_Clock.h"
|
||||||
#define USERMOD_ID_PING_PONG_CLOCK 34 // Usermod "usermod_v2_ping_pong_clock.h"
|
#define USERMOD_ID_PING_PONG_CLOCK 34 // Usermod "usermod_v2_ping_pong_clock.h"
|
||||||
#define USERMOD_ID_ADS1115 35 // Usermod "usermod_ads1115.h"
|
#define USERMOD_ID_ADS1115 35 // Usermod "usermod_ads1115.h"
|
||||||
|
#define USERMOD_ID_KLIPPER 36 // Usermod Klipper percentage
|
||||||
|
|
||||||
// Access point behavior
|
// Access point behavior
|
||||||
#define AP_BEHAVIOR_BOOT_NO_CONN 0 // Open AP when no connection after boot
|
#define AP_BEHAVIOR_BOOT_NO_CONN 0 // Open AP when no connection after boot
|
||||||
@ -206,7 +207,6 @@
|
|||||||
#define COL_ORDER_GBR 5
|
#define COL_ORDER_GBR 5
|
||||||
#define COL_ORDER_MAX 5
|
#define COL_ORDER_MAX 5
|
||||||
|
|
||||||
|
|
||||||
// Button type
|
// Button type
|
||||||
#define BTN_TYPE_NONE 0
|
#define BTN_TYPE_NONE 0
|
||||||
#define BTN_TYPE_RESERVED 1
|
#define BTN_TYPE_RESERVED 1
|
||||||
@ -282,7 +282,6 @@
|
|||||||
#define NL_MODE_COLORFADE 2 // Fade to target brightness and secondary color gradually
|
#define NL_MODE_COLORFADE 2 // Fade to target brightness and secondary color gradually
|
||||||
#define NL_MODE_SUN 3 // Sunrise/sunset. Target brightness is set immediately, then Sunrise effect is started. Max 60 min.
|
#define NL_MODE_SUN 3 // Sunrise/sunset. Target brightness is set immediately, then Sunrise effect is started. Max 60 min.
|
||||||
|
|
||||||
|
|
||||||
#define NTP_PACKET_SIZE 48
|
#define NTP_PACKET_SIZE 48
|
||||||
|
|
||||||
// maximum number of rendered LEDs - this does not have to match max. physical LEDs, e.g. if there are virtual busses
|
// maximum number of rendered LEDs - this does not have to match max. physical LEDs, e.g. if there are virtual busses
|
||||||
|
@ -160,6 +160,10 @@
|
|||||||
#include "../usermods/ADS1115_v2/usermod_ads1115.h"
|
#include "../usermods/ADS1115_v2/usermod_ads1115.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USERMOD_KLIPPER_PERCENTAGE
|
||||||
|
#include "..\usermods\usermod_v2_klipper_percentage\usermod_v2_klipper_percentage.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
void registerUsermods()
|
void registerUsermods()
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
@ -307,4 +311,8 @@ void registerUsermods()
|
|||||||
#ifdef USERMOD_ADS1115
|
#ifdef USERMOD_ADS1115
|
||||||
usermods.add(new ADS1115Usermod());
|
usermods.add(new ADS1115Usermod());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USERMOD_KLIPPER_PERCENTAGE
|
||||||
|
usermods.add(new klipper_percentage());
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user