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 68 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)...

update code for the new TilePaletteMapper API from https://github.com/adafruit/circuitpython/pull/10318 Also updated the CircuitPython Matrix code to request the smaller display resolution so that it draws fewer total characters and refreshes...

Adafruit IO devices wippersnapper config exported as JSON for easy import. https://learn.adafruit.com/iot-open-door-detector-using-notifications-with-adafruit-io

This projects code references an import for esp32spi_reqeusts that doesn't exist any more https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/7406a2bb4a83ee7978cfd2502732ba7d1608af66/IoT_Environment_Sensor/aio.py#L25 It needs updated to use `adafruit_requests` and perhaps other updates as well.

I am referencing this line: [ return (pin.value * 3.1) / 61000](https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/8dab4866d0dc3c383766117f80929bffa950febe/CircuitPython_Templates/analog_voltage_values_ESP32-S3/code.py#L14). A similar line is in the S2 code. The magic number is not explained. It would seem to...

I updated the script to work with python 3.x! [Convert 3.x.zip](https://github.com/user-attachments/files/18054620/Convert.3.x.zip)

This PR accompanies (and depends on changes within) adafruit/Adafruit_CircuitPython_EPD#86. This PR should be merged **after** that one. Relates to adafruit/Adafruit_CircuitPython_EPD#85 #### Scope Updates the [EInk_Bonnet_Event_Calendar](../tree/main/EInk_Bonnet_Event_Calendar) and [EInk_Bonnet_Weather_Station](../tree/main/EInk_Bonnet_Weather_Station) guides with the...