From e0714610d45730f1e180e6e54115eb47ddb332d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 26 Nov 2025 13:13:58 +0000 Subject: [PATCH] Update Notecard API from upstream schema changes (e6de0bf77b477013bf6b0f5e9f14cbd61cceec34) --- notecard/card.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notecard/card.py b/notecard/card.py index e6204d2..a5cb8ff 100644 --- a/notecard/card.py +++ b/notecard/card.py @@ -321,7 +321,7 @@ def io(card, i2c=None, mode=None): @validate_card_object def led(card, mode=None, off=None, on=None): - """Use along with the card.aux API to turn connected LEDs on/off, to enable a specific color on an RGB LED, or to manage a single connected NeoPixel. If using monochromatic LEDs, they must be wired according to the instructions provided in the guide on Using Monitor Mode. Please note that the use of monochromatic LEDs is not supported by Notecard for LoRa. If using an RGB LED, it must be wired according to the instructions provided in the guide on Using RGB-Monitor Mode. Please note that the use of RGB LEDs is not supported by Notecard for LoRa. If using NeoPixels, the NeoPixel (or strip of NeoPixels) must be wired according to the instructions provided in the guide on Using Neo-Monitor Mode. + """Use along with the card.aux API to turn connected LEDs on/off, to enable a specific color on an RGB LED, or to manage a single connected NeoPixel. Monochromatic LEDs must be wired according to the instructions provided in the guide on Using Monitor Mode. Please note that the use of monochromatic LEDs is not supported by Notecard for LoRa. RGB LEDs must be wired according to the instructions provided in the guide on Using RGB-Monitor Mode. Please note that the use of RGB LEDs is not supported by Notecard for LoRa. NeoPixels must be wired according to the instructions provided in the guide on Using Neo-Monitor Mode. Args: card (Notecard): The current Notecard object.