Skip to content

Instantly share code, notes, and snippets.

@georoen
georoen / Monoprice Mini Delta V2 printer API notes.md
Last active July 6, 2022 20:38 — forked from jaredharley/Monoprice Mini Delta V2 printer API notes.md
My working notes on figuring out the Monoprice Mini Delta V2 (MPMDv2) web API

Monoprice Mini Delta V2 printer API

My in-progress documentation of the Monoprice Mini Delta V2 printer api. This is traffic captured between the included Wiibuilder application and the printer when you connect to the printer through Wiibuilder and send a gcode file to print.

GET

api/printer

api/printer during print job

@georoen
georoen / create_pptx.R
Created March 16, 2020 18:48
updated create_pptx
# modified from https://www.brodrigues.co/blog/2018-10-05-ggplot2_purrr_officer/
create_pptx <- function(plt = last_plot(), path = file.choose()){
if(!file.exists(path)) {
out <- read_pptx()
} else {
out <- read_pptx(path)
}
out %>%