Skip to content

Commit c127922

Browse files
committed
fix(docs): Precommit fixes
1 parent 6cd90ca commit c127922

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

docs/en/zigbee/ep_electrical_measurement.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ The ``ZigbeeElectricalMeasurement`` class provides an endpoint for electrical me
1818
* Zigbee HA standard compliance
1919

2020
**Use Cases:**
21-
* Smart power meters
21+
* Smart power monitoring
2222
* Energy monitoring systems
23-
* Industrial power monitoring
2423
* Solar panel monitoring
2524
* Battery monitoring systems
2625
* Electrical load monitoring

docs/en/zigbee/ep_gateway.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ About
66
-----
77

88
The ``ZigbeeGateway`` class provides a gateway endpoint for Zigbee networks. This endpoint implements the Zigbee Home Automation (HA) standard for network coordination and gateway functionality.
9-
Gateway is a device that can be used to bridge Zigbee network to other networks (e.g. WiFi, Ethernet, etc.).
9+
Gateway is a device that can be used to bridge Zigbee network to other networks (e.g. Wi-Fi, Ethernet, etc.).
1010

1111
API Reference
1212
-------------

docs/en/zigbee/ep_window_covering.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Position Control
4949
setLiftPosition
5050
^^^^^^^^^^^^^^^
5151

52-
Sets the window covering lift position in centimeters.
52+
Sets the window covering lift position in cm.
5353

5454
.. code-block:: arduino
5555
5656
bool setLiftPosition(uint16_t lift_position);
5757
58-
* ``lift_position`` - Lift position in centimeters
58+
* ``lift_position`` - Lift position in cm
5959

6060
This function will return ``true`` if successful, ``false`` otherwise.
6161

docs/en/zigbee/zigbee.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Common Issues
135135
**Network connectivity problems**
136136
* Check that devices are within range
137137
* Verify that routers are properly configured
138-
* Check for interference from other 2.4GHz devices
138+
* Check for interference from other 2.4 GHz devices
139139

140140
Factory Reset
141141
*************

docs/en/zigbee/zigbee_core.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Sets the timeout for network operations.
173173
174174
void setTimeout(uint32_t timeout);
175175
176-
* ``timeout`` - Timeout in milliseconds (default: 30000ms)
176+
* ``timeout`` - Timeout in milliseconds (default: 30000 ms)
177177

178178
Network Discovery
179179
*****************

docs/en/zigbee/zigbee_ep.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Sets the power source type for the endpoint.
152152
153153
* ``source`` - Power source type (``ZB_POWER_SOURCE_MAINS``, ``ZB_POWER_SOURCE_BATTERY``, etc.)
154154
* ``percentage`` - Battery percentage (0-100, default: 0xff)
155-
* ``voltage`` - Battery voltage in 100mV units (default: 0xff)
155+
* ``voltage`` - Battery voltage in 100 mV units (default: 0xff)
156156

157157
This function will return ``true`` if set successfully, ``false`` otherwise.
158158

@@ -178,7 +178,7 @@ Sets the battery voltage.
178178
179179
bool setBatteryVoltage(uint8_t voltage);
180180
181-
* ``voltage`` - Battery voltage in 100mV units (e.g., 35 for 3.5V)
181+
* ``voltage`` - Battery voltage in 100 mV units (e.g., 35 for 3.5 V)
182182

183183
This function will return ``true`` if set successfully, ``false`` otherwise.
184184

0 commit comments

Comments
 (0)