OctoPrintAPI icon indicating copy to clipboard operation
OctoPrintAPI copied to clipboard

Library for use with Arduino compatible micro controllers (web enabled) to access the Octoprint API on Raspberry Pi's running the Octoprint 3D printer web server by the brilliant Gina Häußge, aka @foo...

Results 8 OctoPrintAPI issues
Sort by recently updated
recently updated
newest added

As it is now of OctoPrintAPI (V1.1.15) it is only possible to initialize it before setup. This makes problems for dynamic variables. But i changed the source so that OctoPrintAPI...

Would it be possible to make a small arduino temperature and humidity reader, that pushes the temp to of the enclosure to octoprint. It seems that the latency of some...

question

This PR is mainly to correct the issue #28. As discussed, there is no additional library dependency, so it should work and ESPxx and Arduino. I test on a MKR...

Hello, What do you think about adding a feature et set all temperatures at once. This can be useful to quickly set all to 0°C and cool down tools and...

Hello, The the method OctoprintApi::sendRequestToOctoprint() seems, with some occasion, loop for ever or almost. One of the occasion is with this answer (octoprint is down and Nginx is responding) :...

Add pio library file so it can be listed and add dependancies etc.

@chunkysteveo, I am working on an update to handle when a printer is disconnected from OctoPrint. Right now when your printer is disconnected from OctoPrint, the values in the printerStats...

question

Filament length is always reported as 0 Solution: FILE OctoPrintAPI.h : CHANGE: long jobFilamentTool0Length; TO: float jobFilamentTool0Length; AND CHANGE: long jobFilamentTool1Length; TO: float jobFilamentTool1Length; FILE OctoPrintAPI.cpp: CHANGE: printJob.jobFilamentTool0Length = root["job"]["filament"]["tool0"]["length"]...