homebridge-aiseg-awning-window-command 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/LICENSE +0 -0
- package/README.md +47 -1
- package/config.schema.json +0 -0
- package/docs/homekit-settings.jpg +0 -0
- package/docs/homekit-tile.jpg +0 -0
- package/index.js +0 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.6
|
|
4
|
+
|
|
5
|
+
- Added Home app screenshots to the README.
|
|
6
|
+
- Changed the README version history from a link-only section to an inline visible history.
|
|
7
|
+
- Kept the v0.2.5 tilt snapping behavior and simplified UI settings.
|
|
8
|
+
|
|
3
9
|
## 0.2.5
|
|
4
10
|
|
|
5
11
|
- Improved the snap behavior of the HomeKit tilt slider for AiSEG2 awning windows.
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -4,6 +4,15 @@ Homebridge plugin for AiSEG2-connected awning windows.
|
|
|
4
4
|
|
|
5
5
|
This plugin exposes AiSEG2 awning windows as HomeKit `WindowCovering` accessories.
|
|
6
6
|
|
|
7
|
+
## Screenshots
|
|
8
|
+
|
|
9
|
+
<p>
|
|
10
|
+
<img src="./docs/homekit-tile.jpg" alt="Home app tile view showing the awning window at 50 percent open" width="260">
|
|
11
|
+
<img src="./docs/homekit-settings.jpg" alt="Home app settings view showing the awning window tilt slider" width="260">
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
The screenshots show the Home app tile view and the detail view with the horizontal tilt slider.
|
|
15
|
+
|
|
7
16
|
## Features
|
|
8
17
|
|
|
9
18
|
- Open / close control from HomeKit
|
|
@@ -92,4 +101,41 @@ No additional Python package installation is required.
|
|
|
92
101
|
|
|
93
102
|
## Version history
|
|
94
103
|
|
|
95
|
-
|
|
104
|
+
### 0.2.6
|
|
105
|
+
|
|
106
|
+
- Added screenshots to the README.
|
|
107
|
+
- Changed the README version history from a link-only section to an inline visible history.
|
|
108
|
+
- Kept the v0.2.5 tilt snapping behavior and simplified UI settings.
|
|
109
|
+
|
|
110
|
+
### 0.2.5
|
|
111
|
+
|
|
112
|
+
- Improved the snap behavior of the HomeKit tilt slider for AiSEG2 awning windows.
|
|
113
|
+
- Tilt values now snap more firmly to 0°, 15°, 30°, 45°, and 60°.
|
|
114
|
+
- Updated the README and CHANGELOG documentation.
|
|
115
|
+
- Hid internal AiSEG request parameters to simplify the Homebridge UI settings.
|
|
116
|
+
|
|
117
|
+
### 0.2.4
|
|
118
|
+
|
|
119
|
+
- Refactored Python scripts to use a shared `aiseg_device.py` core.
|
|
120
|
+
- Kept `aiseg_window.py` as a compatibility wrapper.
|
|
121
|
+
- Continued to bundle package-local Python scripts.
|
|
122
|
+
- Continued to avoid Python `requests` dependency.
|
|
123
|
+
|
|
124
|
+
### 0.2.3
|
|
125
|
+
|
|
126
|
+
- Bundled the AiSEG awning Python script inside the npm package.
|
|
127
|
+
- Removed fixed private IP, password, and node ID values from the packaged script.
|
|
128
|
+
- Passed user-specific values from Homebridge config to Python via environment variables.
|
|
129
|
+
- Removed dependency on the external Python `requests` package.
|
|
130
|
+
|
|
131
|
+
### 0.2.2
|
|
132
|
+
|
|
133
|
+
- Improved HomeKit awning window behavior.
|
|
134
|
+
- Added better motion guard handling for open, close, and tilt operations.
|
|
135
|
+
- Improved HomeKit display consistency during AiSEG state polling.
|
|
136
|
+
|
|
137
|
+
### 0.2.1 and earlier
|
|
138
|
+
|
|
139
|
+
- Early development releases for AiSEG2 awning window control.
|
|
140
|
+
|
|
141
|
+
See [CHANGELOG.md](./CHANGELOG.md) for the same history in changelog format.
|
package/config.schema.json
CHANGED
|
File without changes
|
|
Binary file
|
|
Binary file
|
package/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-aiseg-awning-window-command",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Homebridge plugin for AiSEG2 awning windows with HomeKit tilt snapping",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
"LICENSE",
|
|
31
31
|
"scripts/aiseg_window.py",
|
|
32
32
|
"scripts/aiseg_device.py",
|
|
33
|
-
"CHANGELOG.md"
|
|
33
|
+
"CHANGELOG.md",
|
|
34
|
+
"docs/homekit-tile.jpg",
|
|
35
|
+
"docs/homekit-settings.jpg"
|
|
34
36
|
],
|
|
35
37
|
"displayName": "Homebridge AiSEG Awning Window Command"
|
|
36
38
|
}
|