A Python library to access and control a Palazzetti stove through a Palazzetti Connection Box
Project description
Python Palazzetti API
An async Python library to access and control a Palazzetti stove through a Palazzetti Connection Box.
Getting started
import asyncio
from pypalazzetti.client import PalazzettiClient
async def main():
client = PalazzettiClient("192.168.1.73")
print(f"Connection: {await client.connect()}")
print(f"Check if online: {await client.is_online()}")
print(f"Update: {await client.update_state()}")
print(f"MAC address: {client.mac}")
print(f"Name: {client.name}")
print(f"Room temperature: {client.room_temperature}")
print(f"Target temperature: {client.target_temperature}")
print(f"Status: {client.status}")
print(f"Set target temperature: {await client.set_target_temperature(22)}")
print(f"Target temperature: {client.target_temperature}")
print(f"Min fan speed: {client.fan_speed_min}")
print(f"Max fan speed: {client.fan_speed_max}")
print(f"Set fan speed: {await client.set_fan_auto()}")
print(f"Fan speed: {client.fan_speed}")
asyncio.new_event_loop().run_until_complete(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pypalazzetti-0.1.9.tar.gz
(7.7 kB
view details)
File details
Details for the file pypalazzetti-0.1.9.tar.gz
.
File metadata
- Download URL: pypalazzetti-0.1.9.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f61a1acf4adedeab5cdab6b63458565a46bf7623aff909bbbed112cd3d005f7 |
|
MD5 | 38ff3172a74ed45d5f25ed2df6710d81 |
|
BLAKE2b-256 | 611f22bf75fc4e5165d8442f48026a28200f5beae2a1e37d40bca41f76b523b6 |