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

https://github.com/matze/meater

MEATER crate + app
https://github.com/matze/meater

meater pi-zero-w

Last synced: 2 months ago
JSON representation

MEATER crate + app

Awesome Lists containing this project

README

        

# MEATER reader

A small helper crate to connect to and read data from a [MEATER](https://www.meater.com) smart
thermometer as well as a little Raspberry Pi Zero application to display
the temperature and battery level.

## Raspberry Pi application

Install the following `meater.service` into `/etc/systemd/system/meater.service`

```
[Unit]
Description=MEATER service
After=bluetooth.target

[Service]
ExecStart=/usr/bin/meater

[Install]
WantedBy=multi-user.target
```

to start the application as a systemd service automatically. In addition, edit
`/etc/bluetooth/main.conf` and change

```
DiscoverableTimeout = 0
```

to avoid losing the device after three minutes.

## Acknowledgements

Temperature conversion taken from the reverse engineering efforts by [Nathan
Faber](https://github.com/nathanfaber/meaterble).

## License

[MIT](./LICENSE)