Skip to content

Commit a96b921

Browse files
committed
fix(matter): fixes title alligments
1 parent 70b9ec7 commit a96b921

10 files changed

+26
-26
lines changed

docs/en/matter/ep_color_light.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Toggles the on/off state.
9494
bool toggle();
9595
9696
Color Control
97-
************
97+
*************
9898

9999
setColorRGB
100100
^^^^^^^^^^^

docs/en/matter/ep_color_temperature_light.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Constructor
3030
***********
3131

3232
MatterColorTemperatureLight
33-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33+
^^^^^^^^^^^^^^^^^^^^^^^^^^^
3434

3535
Creates a new Matter color temperature light endpoint.
3636

@@ -152,7 +152,7 @@ Color Temperature Control
152152
*************************
153153

154154
setColorTemperature
155-
^^^^^^^^^^^^^^^^^^^^
155+
^^^^^^^^^^^^^^^^^^^
156156

157157
Sets the color temperature.
158158

@@ -165,7 +165,7 @@ Sets the color temperature.
165165
**Note:** Color temperature is measured in mireds (micro reciprocal degrees). Lower values (100-200) are warm white, higher values (400-500) are cool white.
166166

167167
getColorTemperature
168-
^^^^^^^^^^^^^^^^^^^^
168+
^^^^^^^^^^^^^^^^^^^
169169

170170
Gets the current color temperature.
171171

@@ -252,7 +252,7 @@ Example
252252
-------
253253

254254
Color Temperature Light
255-
************************
255+
***********************
256256

257257
.. literalinclude:: ../../../libraries/Matter/examples/MatterColorTemperatureLight/MatterColorTemperatureLight.ino
258258
:language: arduino

docs/en/matter/ep_enhanced_color_light.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Constructor
3232
***********
3333

3434
MatterEnhancedColorLight
35-
^^^^^^^^^^^^^^^^^^^^^^^^^
35+
^^^^^^^^^^^^^^^^^^^^^^^^
3636

3737
Creates a new Matter enhanced color light endpoint.
3838

@@ -129,7 +129,7 @@ Toggles the on/off state.
129129
bool toggle();
130130
131131
Color Control
132-
************
132+
*************
133133

134134
setColorRGB
135135
^^^^^^^^^^^
@@ -201,7 +201,7 @@ Sets the color temperature.
201201
bool setColorTemperature(uint16_t newTemperature);
202202
203203
getColorTemperature
204-
^^^^^^^^^^^^^^^^^^^^
204+
^^^^^^^^^^^^^^^^^^^
205205

206206
Gets the current color temperature.
207207

@@ -255,7 +255,7 @@ Sets a callback for color changes.
255255
void onChangeColorHSV(EndPointRGBColorCB onChangeCB);
256256
257257
onChangeColorTemperature
258-
^^^^^^^^^^^^^^^^^^^^^^^^^
258+
^^^^^^^^^^^^^^^^^^^^^^^^
259259

260260
Sets a callback for color temperature changes.
261261

docs/en/matter/ep_fan.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Speed Control
163163
*************
164164

165165
setSpeedPercent
166-
^^^^^^^^^^^^^^^^
166+
^^^^^^^^^^^^^^^
167167

168168
Sets the fan speed percentage.
169169

@@ -244,7 +244,7 @@ Sets a callback for mode changes.
244244
void onChangeMode(EndPointModeCB onChangeCB);
245245
246246
onChangeSpeedPercent
247-
^^^^^^^^^^^^^^^^^^^^^
247+
^^^^^^^^^^^^^^^^^^^^
248248

249249
Sets a callback for speed changes.
250250

docs/en/matter/ep_generic_switch.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Stops processing Matter switch events.
6060
void end();
6161
6262
Event Generation
63-
***************
63+
****************
6464

6565
click
6666
^^^^^
@@ -88,7 +88,7 @@ Example
8888
-------
8989

9090
Generic Switch (Smart Button)
91-
******************************
91+
*****************************
9292

9393
.. literalinclude:: ../../../libraries/Matter/examples/MatterSmartButton/MatterSmartButton.ino
9494
:language: arduino

docs/en/matter/ep_humidity_sensor.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Stops processing Matter humidity sensor events.
6565
void end();
6666
6767
Humidity Control
68-
***************
68+
****************
6969

7070
setHumidity
7171
^^^^^^^^^^^

docs/en/matter/ep_pressure_sensor.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Stops processing Matter pressure sensor events.
6464
void end();
6565
6666
Pressure Control
67-
***************
67+
****************
6868

6969
setPressure
7070
^^^^^^^^^^^

docs/en/matter/ep_thermostat.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Sets a callback for local temperature changes.
283283
void onChangeLocalTemperature(EndPointTemperatureCB onChangeCB);
284284
285285
onChangeCoolingSetpoint
286-
^^^^^^^^^^^^^^^^^^^^^^^^
286+
^^^^^^^^^^^^^^^^^^^^^^^
287287

288288
Sets a callback for cooling setpoint changes.
289289

@@ -292,7 +292,7 @@ Sets a callback for cooling setpoint changes.
292292
void onChangeCoolingSetpoint(EndPointCoolingSetpointCB onChangeCB);
293293
294294
onChangeHeatingSetpoint
295-
^^^^^^^^^^^^^^^^^^^^^^^^
295+
^^^^^^^^^^^^^^^^^^^^^^^
296296

297297
Sets a callback for heating setpoint changes.
298298

docs/en/matter/matter.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Matter library provides support for creating Matter-compatible devices inclu
1717
The Matter library is built on top of `ESP Matter SDK <https://github.com/espressif/esp-matter>`_ and provides a high-level Arduino-style interface for creating Matter devices.
1818

1919
Matter Protocol Overview
20-
***********************
20+
************************
2121

2222
Matter (formerly Project CHIP - Connected Home over IP) is an open-source connectivity standard for smart home devices. It enables seamless communication between devices from different manufacturers, allowing them to work together within a single ecosystem.
2323

@@ -30,7 +30,7 @@ Matter (formerly Project CHIP - Connected Home over IP) is an open-source connec
3030
* **Simple Setup**: Easy commissioning via QR code or pairing code
3131

3232
Matter Network Topology
33-
**********************
33+
***********************
3434

3535
.. code-block:: text
3636
@@ -145,7 +145,7 @@ Common Problems and Issues
145145
--------------------------
146146

147147
Troubleshooting
148-
--------------
148+
---------------
149149

150150
Common Issues
151151
*************

docs/en/matter/matter_endpoint.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Endpoint Management
2222
*******************
2323

2424
getEndPointId
25-
^^^^^^^^^^^^
25+
^^^^^^^^^^^^^
2626

2727
Gets the current Matter Accessory endpoint ID.
2828

@@ -33,7 +33,7 @@ Gets the current Matter Accessory endpoint ID.
3333
This function will return the endpoint number (typically 1-254).
3434

3535
setEndPointId
36-
^^^^^^^^^^^^
36+
^^^^^^^^^^^^^
3737

3838
Sets the current Matter Accessory endpoint ID.
3939

@@ -47,7 +47,7 @@ Secondary Network Interface
4747
***************************
4848

4949
createSecondaryNetworkInterface
50-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
50+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5151

5252
Creates a secondary network interface endpoint. This can be used for devices that support multiple network interfaces, such as Ethernet, Thread and Wi-Fi.
5353

@@ -86,7 +86,7 @@ Gets a pointer to an attribute from its cluster ID and attribute ID.
8686
This function will return a pointer to the attribute, or ``NULL`` if not found.
8787

8888
getAttributeVal
89-
^^^^^^^^^^^^^^^^
89+
^^^^^^^^^^^^^^^
9090

9191
Gets the value of an attribute from its cluster ID and attribute ID.
9292

@@ -131,7 +131,7 @@ Updates the value of an attribute from its cluster ID. This is typically used fo
131131
This function will return ``true`` if successful, ``false`` otherwise.
132132

133133
Identify Cluster
134-
***************
134+
****************
135135

136136
onIdentify
137137
^^^^^^^^^^
@@ -168,7 +168,7 @@ Example usage:
168168
});
169169
170170
Attribute Change Callback
171-
************************
171+
*************************
172172

173173
attributeChangeCB
174174
^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)