Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme #472

Merged
merged 3 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Bticino IP scopes
- Bticino dimmable light (BNLD)
- Start and end times to room class

### Changed

Expand All @@ -20,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

-
- deprecated code

### Fixed

Expand Down Expand Up @@ -69,7 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add NLUF device stub
- Add TPSRS Somfy shutters


### Changed

- Update test fixture data to be in line with HA tests
Expand Down Expand Up @@ -128,11 +130,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated

- The following modules are deprecated and will be removed in pyatmo 8.0.0
- camera
- home_coach
- public_data
- thermostat
- weather_station
- camera
- home_coach
- public_data
- thermostat
- weather_station

## [7.0.0] - 2022-06-05

Expand All @@ -152,11 +154,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated

- The following modules are deprecated and will be removed in pyatmo 8.0.0
- camera
- home_coach
- public_data
- thermostat
- weather_station
- camera
- home_coach
- public_data
- thermostat
- weather_station

### Removed

Expand Down
6 changes: 4 additions & 2 deletions src/pyatmo/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,26 +56,28 @@
"access_doorbell", # Netatmo Smart Video Doorbell
"access_presence", # Netatmo Smart Outdoor Camera
"read_bubendorff", # Bubbendorf shutters
"read_bfi", # BTicino IP
"read_camera", # Netatmo camera products
"read_carbonmonoxidedetector", # Netatmo CO sensor
"read_doorbell", # Netatmo Smart Video Doorbell
"read_homecoach", # Netatmo Smart Indoor Air Quality Monitor
"read_magellan", # Legrand Wiring device or Electrical panel products
"read_mhs1", # Bticino MyHome Server 1 modules
"read_mx", # BTicino Classe 300 EOS
"read_presence", # Netatmo Smart Outdoor Camera
"read_smarther", # Smarther with Netatmo thermostat
"read_smokedetector", # Smart Smoke Alarm information and events
"read_station", # Netatmo weather station
"read_thermostat", # Netatmo climate products
"read_mhs1", # Bticino MyHome Server 1 modules
"write_bubendorff", # Bubbendorf shutters
"write_bfi", # BTicino IP
"write_camera", # Netatmo camera products
"write_magellan", # Legrand Wiring device or Electrical panel products
"write_mhs1", # Bticino MyHome Server 1 modules
"write_mx", # BTicino Classe 300 EOS
"write_presence", # Netatmo Smart Outdoor Camera
"write_smarther", # Smarther products
"write_thermostat", # Netatmo climate products
"write_mhs1", # Bticino MyHome Server 1 modules
]

MANUAL = "manual"
Expand Down
4 changes: 2 additions & 2 deletions src/pyatmo/modules/somfy.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

import logging

from pyatmo.modules.module import FirmwareMixin, Module, RfMixin, ShutterMixin
from pyatmo.modules.module import RfMixin, Shutter

LOG = logging.getLogger(__name__)


class TPSRS(FirmwareMixin, RfMixin, ShutterMixin, Module):
class TPSRS(RfMixin, Shutter):
"""Class to represent a somfy TPSRS."""

...