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
- Host: GitHub
- URL: https://github.com/pstrobl96/prusa_proxy
- Owner: pstrobl96
- License: agpl-3.0
- Created: 2025-05-27T16:30:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-29T18:46:53.000Z (about 1 year ago)
- Last Synced: 2025-06-21T01:39:18.215Z (about 1 year ago)
- Language: Go
- Size: 42 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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": ""
}'
```