nefit-client 0.3.0

Library for communicating with Bosch/Nefit thermostat API
Documentation
# nefit-client

[![Build Status](https://github.com/twistedfall/nefit-client/actions/workflows/nefit-client.yml/badge.svg)](https://github.com/twistedfall/nefit-client/actions/workflows/nefit-client.yml)
[![Documentation](https://docs.rs/nefit-client/badge.svg)](https://docs.rs/nefit-client)
[![Crates.io](https://img.shields.io/crates/v/nefit-client)](https://crates.io/crates/nefit-client)
![Maintenance](https://img.shields.io/badge/maintenance-passively--maintained-yellowgreen.svg)

[Support the project]https://github.com/sponsors/twistedfall | [Documentation]https://docs.rs/nefit-client


## Usage

Run:
```shell
cargo add nefit-client
```
Or add to your Cargo.toml:
```toml
[dependencies]
nefit-client = "0.3.0"
```

## Communication library for Nefit (Bosch) gas boilers

A word of warning: the last time I used this code in production was in March 2023, so it could've code-rotten since.

Not all endpoints are implemented, the focus was mostly on reading the data. I will gladly accept PRs.

### Nefit API specifics

The communication method is quite peculiar because it's essentially HTTP with custom encryption over XMPP. The library
connects to Bosch XMPP server and then exchanges encrypted messages which are HTTP requests and responses.

## Example

```rust
let cl = nefit_client::Client::new("<SERIAL_NUMBER>", "<ACCESS_KEY>", "<PASSWORD>");
let cm = cl.connect().unwrap();
dbg!(cm.status().unwrap());
dbg!(cm.outdoor_temp().unwrap());
dbg!(cm.system_pressure().unwrap());
dbg!(cm.supply_temp().unwrap());
```

## Useful links
* https://github.com/robertklep/nefit-easy-core
* https://gathering.tweakers.net/forum/list_messages/1659309/0
* https://www.domoticz.com/forum/viewtopic.php?t=9653

## License

MIT OR Apache-2.0