mmcp42
June 16, 2020, 4:39pm
1
is there a plugin that handles the OctoPrint model, and allows various actions at each event
e.g.
Job start
bed up to temperature
hot-end up to temperature
job end
I'm sure there must be others
or am I ready to start writing such a plugin?
cheers
I don't know if there is a generic event plugin, but it is built into the core of OctoPrint itself, just requires configuring config.yaml.
https://docs.octoprint.org/en/master/events/index.html
Looks like the most generic plugin is the webhooks one.
This plugin was created so that my own API could receive events from OctoPrint and perform custom actions such as
send a text message/push notification, log the events in a database, etc.
Also, I needed a way to get notified when a color change was...
mmcp42
June 16, 2020, 6:41pm
3
@jneilliii thanks for the response
almost what I'm looking for
job start/end are covered, but not "heating finished"
but I think I can catch that with Terminal Monitor and a sprinkling of custom gcode using M150
cheers