Skip to content

Commit 1a501ed

Browse files
committed
fix(matter): fixes window blind terms
1 parent 78e9656 commit 1a501ed

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/en/matter/matter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ The Matter library includes a comprehensive set of examples demonstrating variou
219219
* **Matter Dimmable Plugin** - Creates a Matter-compatible dimmable plugin unit (power outlet with level control) device with state persistence for dimmable power control applications. `View Matter Dimmable Plugin code on GitHub <https://github.com/espressif/arduino-esp32/tree/master/libraries/Matter/examples/MatterDimmablePlugin>`_
220220
* **Matter Smart Button** - Creates a Matter-compatible smart button (generic switch) device that sends button click events to smart home ecosystems and triggers automations. `View Matter Smart Button code on GitHub <https://github.com/espressif/arduino-esp32/tree/master/libraries/Matter/examples/MatterSmartButton>`_
221221
* **Matter Window Covering** - Creates a Matter-compatible window covering device with lift and tilt control (blinds, shades) with manual control using a physical button. `View Matter Window Covering code on GitHub <https://github.com/espressif/arduino-esp32/tree/master/libraries/Matter/examples/MatterWindowCovering>`_
222-
* **Matter Simple Window Blinds** - A minimal example that only controls lift percentage using a single onGoToLiftPercentage() callback. `View Matter Simple Window Blinds code on GitHub <https://github.com/espressif/arduino-esp32/tree/master/libraries/Matter/examples/MatterSimpleWidowsBlind>`_
222+
* **Matter Simple Blinds** - A minimal example that only controls lift percentage using a single onGoToLiftPercentage() callback. `View Matter Simple Blinds code on GitHub <https://github.com/espressif/arduino-esp32/tree/master/libraries/Matter/examples/MatterSimpleBlinds>`_
223223

224224
**Advanced Examples:**
225225

libraries/Matter/examples/MatterSimpleWidowsBlind/MatterSimpleWidowsBlind.ino renamed to libraries/Matter/examples/MatterSimpleBlinds/MatterSimpleBlinds.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
// Matter Simple Window Blinds Example
15+
// Matter Simple Blind Example
1616
// This is a minimal example that only controls Lift percentage using a single onGoToLiftPercentage() callback
1717

1818
#include <Matter.h>
@@ -45,7 +45,7 @@ void setup() {
4545
Serial.begin(115200);
4646
delay(1000);
4747
Serial.println("\n========================================");
48-
Serial.println("Matter Simple Window Blinds Example");
48+
Serial.println("Matter Simple Blinds Example");
4949
Serial.println("========================================\n");
5050

5151
// CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network

libraries/Matter/examples/MatterSimpleWidowsBlind/README.md renamed to libraries/Matter/examples/MatterSimpleBlinds/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matter Simple Window Blinds Example
1+
# Matter Simple Blinds Example
22

33
This is a minimal example demonstrating how to create a Matter-compatible window covering device with lift control only. This example uses a single `onGoToLiftPercentage()` callback to handle all window covering lift changes, making it ideal for simple implementations.
44

@@ -55,7 +55,7 @@ Before uploading the sketch, configure the following:
5555

5656
## Building and Flashing
5757

58-
1. Open the `MatterSimpleWidowsBlind.ino` sketch in the Arduino IDE.
58+
1. Open the `MatterSimpleWindowBlind.ino` sketch in the Arduino IDE.
5959
2. Select your ESP32 board from the **Tools > Board** menu.
6060
3. Select **"Huge APP (3MB No OTA/1MB SPIFFS)"** from **Tools > Partition Scheme** menu.
6161
4. Enable **"Erase All Flash Before Sketch Upload"** option from **Tools** menu.
@@ -66,7 +66,7 @@ Before uploading the sketch, configure the following:
6666

6767
```
6868
========================================
69-
Matter Simple Window Blinds Example
69+
Matter Simple Blinds Example
7070
========================================
7171
7272
Connecting to your-ssid

libraries/Matter/examples/MatterSimpleWidowsBlind/ci.yml renamed to libraries/Matter/examples/MatterSimpleBlinds/ci.yml

File renamed without changes.

0 commit comments

Comments
 (0)