https://github.com/ctrox/mara-xporter
Prometheus exporter for Lelit Mara PL62X
https://github.com/ctrox/mara-xporter
Last synced: 6 months ago
JSON representation
Prometheus exporter for Lelit Mara PL62X
- Host: GitHub
- URL: https://github.com/ctrox/mara-xporter
- Owner: ctrox
- Created: 2022-07-06T08:02:24.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-05T19:03:10.000Z (about 3 years ago)
- Last Synced: 2025-10-13T15:24:28.147Z (9 months ago)
- Language: Go
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mara-xporter
This is a Prometheus exporter for the Coffee Machine Lelit Mara PL62X. It uses
the UART interface to get some basic readings of the heat exchanger, steam
temperature etc.
## raspberry-pi config
* build binary (1st gen Pi Zero)
```bash
env GOOS=linux GOARCH=arm GOARM=5 go build
```
* enable UART in pi config
```bash
$ vi /boot/config.txt
enable_uart=1
```
* copy binary and enable systemd unit
```bash
cp mara-xporter /usr/local/bin
cp mara-xporter.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable mara-xporter
```