Circuitpython on the Pico seems to have a Problem with the Adafruit_DS3231 Module??
This is the Error message I see from this code.
Any help would be appreciated....
( How do I post a Screenshot here ?)
# print the current date and time every second. Notice also comments to adjust
# for working with hardware vs. software I2C.
import time
import board
import busio
import adafruit_ds3231
#sda=board.GP16
#scl=board.GP17
i2c = busio.I2C(board.GP16, board.GP17)
rtc = adafruit_ds3231.DS3231(i2c)
# Lookup table for names of days (nicer printing).
days = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
>> %Run -c $EDITOR_CONTENT
Traceback (most recent call last):
File "<stdin>", line 12, in <module>
File "adafruit_ds3231.py", line 49, in <module>
ImportError: no module named 'adafruit_register'
Thanks James