Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
LavermanJJ authored Aug 27, 2023
1 parent 2c15981 commit fd5b4b8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
1. [About](#about)
2. [Supported Solarfocus Software and Hardware](#supported-solarfocus-software-and-hardware)
3. [How To](#how-to)
- [Installation](#installation)
- [Basic Example](#basic-example)
- [Handling multiple components](#handling-multiple-components)
- [API-Version specification](api-version-specification)
- [API-Version specification](#api-version-specification)
4. [Changelog of API-Versions](#changelog-of-api-versions)


Expand Down Expand Up @@ -68,6 +69,12 @@ The eco<sup>manager-touch</sup> can integrate the following heating systems

## How To

### Installation

```
pip3 install pysolarfocus
```

### Basic Example

```python
Expand All @@ -76,7 +83,7 @@ from pysolarfocus import SolarfocusAPI,Systems,ApiVersions
# Create the Solarfocus API client
solarfocus = SolarfocusAPI(
ip="solarfocus", # adapt IP-Address
system=Systems.VAMPAIR, # for biomass boiler change to Systems.Therminator
system=Systems.VAMPAIR, # for biomass boiler change to Systems.THERMINATOR / ECOTOP
api_version=ApiVersions.V_23_020) # select Solarfocus version

solarfocus.connect()
Expand Down

0 comments on commit fd5b4b8

Please sign in to comment.