Frédéric

Results 25 comments of Frédéric

Do you have an example, please ? I tried like this: ``` const char *constMEM empty[] MEMMODE = {}; EDIT("IP:", "192.168.0.1", empty, Menu::doNothing, Menu::noEvent, Menu::noStyle) ``` The is shown but...

Thanks a lot. Works fine like this : ``` const char *constMEM empty[] MEMMODE = {}; MENU(advanced_menu, "Advanced", Menu::doNothing, Menu::noEvent, Menu::noStyle, [...] EDIT("@", wificonnexion.localIP, empty, Menu::doNothing, Menu::noEvent, Menu::noStyle), [...] advanced_menu[3].disable();...

You can also split into several sub menu Random -> COLOR or smooth Strobe -> RED, PURPLE, etc. Fade -> Yellow, etc. For a user, a well structured menu is...

Here too with Big Sur 11.2.3

Thanks a lot. To limit security risk, we can also limit this api to some specific users using settings. I haven't been through all Octoprint documentation but It the idea...

Hello, Perhaps using a plugin to send the message from M117.

Love it !! We can do something like : bool octoPrintSetTemperatures(uint16_t tool0 = 0, uint16_t tool1 = 0, uint16_t bed = 0); bool octoPrintCoolDown() { return octoPrintSetTemperatures() } For the...

Hello, I looked into the REST API documentation but I can't find temperatures profiles. Do you have any idea how to retrieve the information ?

It's a **HUGE** JSON and dependents on plugins configuration. With mine, I get 19k characters, really TOO much for an arduino. I tried to request just a part (temperature) but...

I agree, too complicate for the usage. Do you code the profile part ?