Adafruit_Learning_System_Guides icon indicating copy to clipboard operation
Adafruit_Learning_System_Guides copied to clipboard

Programs and scripts to display "inline" in Adafruit Learning System guides

Results 54 Adafruit_Learning_System_Guides issues
Sort by recently updated
recently updated
newest added

Ref: * [Learn guide](https://learn.adafruit.com/adafruit-infrared-ir-remote-transceiver?view=all#example-code-3175233) * [code](https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/7dbfc24ff1954104c312d2c7ffd7a85f68fe6b59/STEMMA_IR_Transceiver_Examples/CircuitPython/code.py#L32) _As written_, the transceiver seems to have developed a feedback loop wherein the receiver is actually _also_ receiving the transmitted code, which then re-transmits,...

This commit introduces a screensaver mode to the Adafruit Macropad hotkeys script, addressing issue [#2882](https://github.com/adafruit/Adafruit_Learning_System_Guides/issues/2882). ### Key Changes: - **Screensaver Activation**: Added a new configurable parameter `SCREENSAVER_START_TIME`, which specifies the...

I recently encountered a significant issue while using the demo code provided in the [MACROPAD Hotkeys guide](https://learn.adafruit.com/macropad-hotkeys) on the Adafruit website. The current example code lacks a mechanism to turn...

(Refer to the Adafruit [article](https://learn.adafruit.com/flying-faders)) Starting here: [Flying_Fader_Arduino](https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/Flying_Fader_Arduino/Flying_Fader_Arduino.ino), in the `go_to_position` function starting at line 100: ``` void go_to_position(int new_position) { fader_pos = int(analogRead(fader) / 4); while (abs(fader_pos - new_position)...