An open API service indexing awesome lists of open source software.

https://github.com/pstrobl96/prusa_proxy

Just small proxy that allow you control printer via REST API
https://github.com/pstrobl96/prusa_proxy

Last synced: 11 months ago
JSON representation

Just small proxy that allow you control printer via REST API

Awesome Lists containing this project

README

          

# prusa_proxy

Just small proxy that allow user control printer via REST API without necessary access to digest - for example when using Grafana

### Operations

#### Pause

```
curl --location 'http://localhost:31100/pause' \
--header 'Content-Type: text/plain' \
--data '{
"ip": ""
}'
```

#### Resume

```
curl --location 'http://localhost:31100/resume' \
--header 'Content-Type: text/plain' \
--data '{
"ip": ""
}'
```

#### Stop

```
curl --location 'http://localhost:31100/stop' \
--header 'Content-Type: text/plain' \
--data '{
"ip": ""
}'
```