From bef945f1856824ba195a426d4f703e0c2eb429cd Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Wed, 5 Jul 2023 16:19:37 -0700 Subject: [PATCH 1/2] add ina address to summary --- docs/configuration/device-config/power.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/device-config/power.mdx b/docs/configuration/device-config/power.mdx index a84b092f..1b0d3cdc 100644 --- a/docs/configuration/device-config/power.mdx +++ b/docs/configuration/device-config/power.mdx @@ -13,7 +13,7 @@ import calculateADC from "/src/utils/calculateADC"; Power settings are advanced configuration, most users should choose a role under [Device Config](/docs/settings/config/device) to manage power for their device and shouldn't ever need to adjust these settings. ::: -The power config options are: Power Saving, Shutdown after losing power, ADC Multiplier Override, Wait Bluetooth Interval, Mesh Super Deep Sleep Timeout, Super Deep Sleep Interval, Light Sleep Interval, and Minimum Wake Interval. Power config uses an admin message sending a `Config.Power` protobuf. +The power config options are: Power Saving, Shutdown after losing power, ADC Multiplier Override, Wait Bluetooth Interval, Mesh Super Deep Sleep Timeout, Super Deep Sleep Interval, Light Sleep Interval, Minimum Wake Interval, and Device Battery INA2xx Address. Power config uses an admin message sending a `Config.Power` protobuf. :::info ADC Multiplier, Super Deep Sleep, and Light Sleep settings only apply to ESP32-based boards. These settings will have no effect on nRF52 modules. From a549cc0b796fe2bb9a7e32971e3946d05d19a7bf Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Wed, 5 Jul 2023 22:10:45 -0700 Subject: [PATCH 2/2] fix cli ls_secs default value --- docs/configuration/device-config/power.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/device-config/power.mdx b/docs/configuration/device-config/power.mdx index a84b092f..7f70959c 100644 --- a/docs/configuration/device-config/power.mdx +++ b/docs/configuration/device-config/power.mdx @@ -176,7 +176,7 @@ All Power config options are available in the python CLI. | power.wait_bluetooth_secs | `integer` (seconds) | Default of `0` is 1 minute | | power.mesh_sds_timeout_secs | `integer` (seconds) | Default of `0` is 2 hours | | power.sds_secs | `integer` (seconds) | Default of `0` is 1 year | -| power.ls_secs | `integer` (seconds) | Default of `0` is 1 hour | +| power.ls_secs | `integer` (seconds) | Default of `0` is 5 minutes | | power.min_wake_secs | `integer` (seconds) | Default of `0` is 10 seconds | | power.device_battery_ina_address | `integer` (I2C address as decimal) | Default of `0` is no address set |