Skip to content

Commit 5b03d61

Browse files
committed
ci(): fix precommit codespell
1 parent 80fda00 commit 5b03d61

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor/Zigbee_Electrical_AC_Sensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void setup() {
101101
}
102102
Serial.println("Connected");
103103

104-
// Optional: Add reporting for AC measurements (this is overriden by HomeAssistant ZHA if used as a Zigbee coordinator)
104+
// Optional: Add reporting for AC measurements (this is overridden by HomeAssistant ZHA if used as a Zigbee coordinator)
105105
zbElectricalMeasurement.setACReporting(
106106
ZIGBEE_AC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_AC_PHASE_TYPE_A, 0, 30, 10
107107
); // report every 30 seconds if value changes by 10 (0.1V)

libraries/Zigbee/examples/Zigbee_Electrical_DC_Sensor/Zigbee_Electrical_DC_Sensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void setup() {
9292
}
9393
Serial.println("Connected");
9494

95-
// Optional: Add reporting for DC measurements (this is overriden by HomeAssistant ZHA if connected to its network)
95+
// Optional: Add reporting for DC measurements (this is overridden by HomeAssistant ZHA if connected to its network)
9696
zbElectricalMeasurement.setDCReporting(ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, 0, 30, 10); // report every 30 seconds if value changes by 10 (0.1V)
9797
zbElectricalMeasurement.setDCReporting(ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, 0, 30, 10); // report every 30 seconds if value changes by 10 (0.1A)
9898
zbElectricalMeasurement.setDCReporting(ZIGBEE_DC_MEASUREMENT_TYPE_POWER, 0, 30, 10); // report every 30 seconds if value changes by 10 (0.1W)

0 commit comments

Comments
 (0)