mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-28 06:59:45 -08:00
typos and ADC multiplier for esp only
This commit is contained in:
parent
5a188240f5
commit
9ebbb92255
|
@ -9,9 +9,11 @@ import Tabs from "@theme/Tabs";
|
|||
import TabItem from "@theme/TabItem";
|
||||
import calculateADC from "/src/utils/calculateADC";
|
||||
|
||||
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.
|
||||
:::info
|
||||
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.
|
||||
:::
|
||||
|
||||
Power settings are advanced configuration, most users should choose a role under Device Config to manage power for their device and should never need to touch any of 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.
|
||||
|
||||
## Power Config Values
|
||||
|
||||
|
@ -23,7 +25,7 @@ If set, Bluetooth, Wifi, and screen (if applicable) are turned off. When using t
|
|||
|
||||
Automatically shut down a device after a defined time period if power is lost.
|
||||
|
||||
### ADC Multiplier Override `Fixes issues on Heltec v2`
|
||||
### ADC Multiplier Override
|
||||
|
||||
Ratio of voltage divider for battery pin e.g. 3.20 (R1=100k, R2=220k)
|
||||
|
||||
|
@ -31,6 +33,10 @@ Overrides the ADC_MULTIPLIER defined in the firmware device variant file for bat
|
|||
|
||||
Should be set to floating point value between 2 and 6
|
||||
|
||||
:::info
|
||||
ADC Multiplier only applies to ESP32-based boards. This setting will have no effect on nRF52 modules.
|
||||
:::
|
||||
|
||||
#### Calibration Process ([Attribution](https://wiki.uniteng.com/en/meshtastic/nano-g1-explorer#calibration-process))
|
||||
|
||||
1. Install the rechargeable Li-Polymer battery.
|
||||
|
@ -85,7 +91,7 @@ It's important to note that this calibration method only maps 4.2V to Battery Ch
|
|||
|
||||
### Wait Bluetooth Interval
|
||||
|
||||
How long wait before turning off BLE in no Bluetooth states
|
||||
How long to wait before turning off BLE in no Bluetooth states
|
||||
|
||||
`0` for default of 1 minute
|
||||
|
||||
|
@ -103,12 +109,18 @@ While in Light Sleep if Mesh Super Deep Sleep Timeout Seconds is exceeded we wil
|
|||
|
||||
`0` for default of one year
|
||||
|
||||
### Light Sleep Interval `ESP32 Only Setting`
|
||||
|
||||
In light sleep the CPU is suspended, LoRa radio is on, BLE is off an GPS is on
|
||||
|
||||
### Light Sleep Interval
|
||||
|
||||
In light sleep the CPU is suspended, LoRa radio is on, BLE is off and GPS is on
|
||||
|
||||
`0` for default of five minutes
|
||||
|
||||
:::info
|
||||
Light Sleep Interval only applies to ESP32-based boards. This setting will have no effect on nRF52 modules.
|
||||
:::
|
||||
|
||||
### Minimum Wake Interval
|
||||
|
||||
While in light sleep when we receive packets on the LoRa radio we will wake and handle them and stay awake in no Bluetooth mode for this interval
|
||||
|
|
Loading…
Reference in a new issue