Carter Nelson

Results 30 issues of Carter Nelson

Worth adding? For example, to access IO2 and IO3 on the breakout: https://www.adafruit.com/product/1571 or for backlight control on the 3.5" TFT FeatherWing: https://learn.adafruit.com/adafruit-3-5-tft-featherwing/downloads

https://github.com/adafruit/Adafruit_BusIO

The logic change in #22 is flawed. The switch statement for `VEML_LUX_NORMAL_NOWAIT` and `VEML_LUX_CORRECTED_NOWAIT` will always return `-1` instead of actually performing and ALS reading. See commit comment: https://github.com/adafruit/Adafruit_VEML7700/commit/aadc65f600d2cc4faa99bfb7ce5bc6c946d144da#comments Test...

More discussion here: https://forums.adafruit.com/viewtopic.php?t=201104 The registers for Alarm 2 of the DS3231 do **not** have seconds: ![alarm_reg](https://user-images.githubusercontent.com/8755041/235955649-a2bace81-4415-4337-98fa-de9984ba519a.png) However, "minutely" (once per minute) triggering is supported: ![alarm](https://user-images.githubusercontent.com/8755041/235955855-409da7f6-b914-4f2f-80e3-725768bc6ae3.png)

Re this thread: https://forums.adafruit.com/viewtopic.php?p=938210 Can recreate via simple REPL import: ```python Adafruit CircuitPython 7.3.2 on 2022-07-20; Adafruit Feather M0 Express with samd21g18 >>> import adafruit_ht16k33.segments Traceback (most recent call last):...

enhancement

This may affect other variants, but was discovered and tested using an ATtiny817. megaTinyCore release 2.6.10 Example sketch to demonstrate issue: ```cpp // attiny817 PWM pins: 0, 1, 9, 10,...

bug
critical

At some point would be nice to turn off the debug output - or make optional. It's useful stuff, so not suggesting just deleting. ```python >>> pycam = adafruit_pycamera.PyCamera() FutureWarning:...

This forum poster was trying to get a [Feather RP2040 CAN](https://www.adafruit.com/product/5724) working with a [TFT FeatherWing](https://www.adafruit.com/product/3651): https://forums.adafruit.com/viewtopic.php?t=217465 Dealing with ensuring the various CS pins were being handled properly worked to...

OS = Ubuntu 24.04.1 LTS 64bit Arduino 1.8.19 arduino-nRF5 BSP 0.8.0 Tools -> Board = BBC micro:bit V2 Example sketch: ```cpp void setup() { } void loop() { } ```...

More info in this forum thread: https://forums.adafruit.com/viewtopic.php?t=220309 Test sketch to use for demonstrating the issue: ```cpp /********************************************************* This is a library for the MPR121 12-channel Capacitive touch sensor Designed specifically...