From 6ea0d9a6af1fed3c94deb60f9bfdfa259d8e3fc7 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sun, 10 Sep 2023 21:38:07 -0700 Subject: [PATCH] ambient lighting init --- .../module-config/ambient-lighting.mdx | 106 ++++++++++++++++++ .../module-config/detection-sensor.mdx | 2 + docs/configuration/module-config/index.mdx | 1 + 3 files changed, 109 insertions(+) create mode 100644 docs/configuration/module-config/ambient-lighting.mdx diff --git a/docs/configuration/module-config/ambient-lighting.mdx b/docs/configuration/module-config/ambient-lighting.mdx new file mode 100644 index 00000000..02b5db59 --- /dev/null +++ b/docs/configuration/module-config/ambient-lighting.mdx @@ -0,0 +1,106 @@ +--- +id: ambient-lighting +title: Ambient Lighting Module Usage +slug: /settings/moduleconfig/ambient-lighting +sidebar_label: Ambient Lighting +--- + +import Tabs from "@theme/Tabs"; +import TabItem from "@theme/TabItem"; + +The Ambient Lighting Module has settings for control of onboard LEDs and allows users to adjust the brightness levels and respective color levels. Initially created for the RAK14001 RGB LED module using the NCP5623 with I2C. Config options are: LED State, Current, Red Level, Green Level, and Blue Level. + +In order to use this module, make sure your devices have firmware version 2.2.5 or higher. + +## Ambient Lighting Config Values + +### LED State + +Sets the LED to on or Off + +### Current + +Sets the current for the LED output. Default is 10. + +### Red + +Sets the red LED level. Values are 0-255. + +### Green + +Sets the green LED level. Values are 0-255. + +### Blue + +Sets the blue LED level. Values are 0-255. + +## Ambient Lighting Module Client Availability + + + + + +:::info +All Ambient Lighting Module config options are available for Android in app version 2.2.3 and higher. + +1. Open the Meshtastic App +2. Navigate to: **Vertical Ellipsis (3 dots top right) > Radio Configuration > Ambient Lighting** +::: + + + + +:::info +All Ambient Lighting Module config options are available on iOS, iPadOS and macOS app versions 2.2.3 and higher at Settings > Modules > Ambient Lighting +::: + + + + +:::info + +All Ambient Lighting Module config options are available in the python CLI version 2.2.3 and higher. + +::: + +Example commands are below: + +```shell title="Set the LED to on or off" +meshtastic --set ambient_lighting.led_state 1 +meshtastic --set ambient_lighting.led_state 0 +``` + +```shell title="Set the led current to 5" +meshtastic --set ambient_lighting.current 5 +``` + +```shell title="Set the red LED brightness to 103" +meshtastic --set ambient_lighting.red 103 +``` + +```shell title="Set the green brightness to 234" +meshtastic --set ambient_lighting.green 234 +``` + +```shell title="Set the blue LED brightness to 148" +meshtastic --set ambient_lighting.blue 148 +``` + +```shell title="Get the Ambient Lighting Module Configuration" +meshtastic --get ambient_lighting +``` + + + +Not yet implemented. + + + \ No newline at end of file diff --git a/docs/configuration/module-config/detection-sensor.mdx b/docs/configuration/module-config/detection-sensor.mdx index 3d28817c..13b66840 100644 --- a/docs/configuration/module-config/detection-sensor.mdx +++ b/docs/configuration/module-config/detection-sensor.mdx @@ -71,7 +71,9 @@ All Detection Sensor Module config options are available for Android in app vers +:::info All Detection Sensor Module config options are available on iOS, iPadOS and macOS app versions 2.2.2 and higher at Settings > Modules > Detection Sensor +::: diff --git a/docs/configuration/module-config/index.mdx b/docs/configuration/module-config/index.mdx index b4335d9f..1f44bde9 100644 --- a/docs/configuration/module-config/index.mdx +++ b/docs/configuration/module-config/index.mdx @@ -10,6 +10,7 @@ Modules are included in the firmware and allow users to extend the functionality | Name | Description | | :------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | +| [Ambient Lighting](/docs/settings/moduleconfig/ambient-lighting) | Adjust the brightness of NCP5623 I2C RGB LEDs | | [Audio](/docs/settings/moduleconfig/audio) | Enable Support for Codec2 Voice Comms on certain devices. | | [Canned Message](/docs/settings/moduleconfig/canned-message) | Set a number of predefined messages to send out directly from the device with the use of an input device like a rotary encoder. | | [Detection Sensor](/docs/settings/moduleconfig/detection-sensor) | Configure a GPIO pin to be monitored for specified high/low status and send text alerts. |