diff --git a/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor/README.md b/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor/README.md index d8f2c6b2743..fe032049c90 100644 --- a/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor/README.md +++ b/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor/README.md @@ -12,20 +12,20 @@ Currently, this example supports the following targets. ## AC Electrical Measurement Functions * After this board first starts up, it would be configured locally to report AC electrical measurements: - - AC voltage in volts (0-300.00V) - - AC current in amps (0-10.000A) - - AC power in watts (0-3200.0W) - - AC frequency in hertz (0-65.000Hz) + - AC voltage in volts (0-300.00 V) + - AC current in amps (0-10.000 A) + - AC power in watts (0-3200.0 W) + - AC frequency in hertz (0-65.000 Hz) * Holding the button (BOOT) for more than 3 seconds will trigger a factory reset of the device. * The device reports measurements every 2 seconds with simulated values. ## Measurement Precision The example demonstrates how to set up proper measurement precision using multiplier and divisor values: - * Voltage: 1/100 = 0.01V (1 unit = 10mV) - * Current: 1/1000 = 0.001A (1 unit = 1mA) - * Power: 1/10 = 0.1W (1 unit = 100mW) - * Frequency: 1/1000 = 0.001Hz (1 unit = 1mHz) + * Voltage: 1/100 = 0.01 V (1 unit = 10 mV) + * Current: 1/1000 = 0.001 A (1 unit = 1 mA) + * Power: 1/10 = 0.1 W (1 unit = 100 mW) + * Frequency: 1/1000 = 0.001 Hz (1 unit = 1 mHz) These settings ensure accurate reporting of measurements with proper decimal precision in the Zigbee network. diff --git a/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor_MultiPhase/README.md b/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor_MultiPhase/README.md index bc6b2e1a5d7..3714a05fa4f 100644 --- a/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor_MultiPhase/README.md +++ b/libraries/Zigbee/examples/Zigbee_Electrical_AC_Sensor_MultiPhase/README.md @@ -12,20 +12,20 @@ Currently, this example supports the following targets. ## AC Electrical Measurement Functions * After this board first starts up, it would be configured locally to report AC electrical measurements: - - AC voltage in volts (0-300.00V) for each phase (A, B, C) - - AC current in amps (0-10.000A) for each phase (A, B, C) - - AC power in watts (0-3200.0W) for each phase (A, B, C) - - AC frequency in hertz (0-65.000Hz) shared across all phases + - AC voltage in volts (0-300.00 V) for each phase (A, B, C) + - AC current in amps (0-10.000 A) for each phase (A, B, C) + - AC power in watts (0-3200.0 W) for each phase (A, B, C) + - AC frequency in hertz (0-65.000 Hz) shared across all phases * Holding the button (BOOT) for more than 3 seconds will trigger a factory reset of the device. * The device reports measurements every 2 seconds with simulated values. ## Measurement Precision The example demonstrates how to set up proper measurement precision using multiplier and divisor values: - * Voltage: 1/100 = 0.01V (1 unit = 10mV) - * Current: 1/1000 = 0.001A (1 unit = 1mA) - * Power: 1/10 = 0.1W (1 unit = 100mW) - * Frequency: 1/1000 = 0.001Hz (1 unit = 1mHz) + * Voltage: 1/100 = 0.01 V (1 unit = 10 mV) + * Current: 1/1000 = 0.001 A (1 unit = 1 mA) + * Power: 1/10 = 0.1 W (1 unit = 100 mW) + * Frequency: 1/1000 = 0.001 Hz (1 unit = 1 mHz) These settings ensure accurate reporting of measurements with proper decimal precision in the Zigbee network. diff --git a/libraries/Zigbee/examples/Zigbee_Electrical_DC_Sensor/README.md b/libraries/Zigbee/examples/Zigbee_Electrical_DC_Sensor/README.md index fae9565ecec..e8922fc1a79 100644 --- a/libraries/Zigbee/examples/Zigbee_Electrical_DC_Sensor/README.md +++ b/libraries/Zigbee/examples/Zigbee_Electrical_DC_Sensor/README.md @@ -12,18 +12,18 @@ Currently, this example supports the following targets. ## DC Electrical Measurement Functions * After this board first starts up, it would be configured locally to report DC electrical measurements: - - DC voltage in millivolts (0-5000mV) - - DC current in milliamps (0-1000mA) - - DC power in milliwatts (0-5000mW) + - DC voltage in millivolts (0-5000 mV) + - DC current in milliamps (0-1000 mA) + - DC power in milliwatts (0-5000 mW) * Holding the button (BOOT) for more than 3 seconds will trigger a factory reset of the device. * The device reports measurements every 30 seconds if the value changes by more than the configured delta. ## Measurement Precision The example demonstrates how to set up proper measurement precision using multiplier and divisor values: - * Voltage: 1/1000 = 0.001V (1 unit = 1mV) - * Current: 1/1000 = 0.001A (1 unit = 1mA) - * Power: 1/1000 = 0.001W (1 unit = 1mW) + * Voltage: 1/1000 = 0.001 V (1 unit = 1 mV) + * Current: 1/1000 = 0.001 A (1 unit = 1 mA) + * Power: 1/1000 = 0.001 W (1 unit = 1 mW) These settings ensure accurate reporting of measurements with proper decimal precision in the Zigbee network.