Board-new-dat/ESP32-S3-cam-dat/ESP32-S3-cam-code-dat/settings.toml
... ...
@@ -0,0 +1,3 @@
1
+CIRCUITPY_WIFI_SSID = "111"
2
+CIRCUITPY_WIFI_PASSWORD = "electrodragon"
3
+CIRCUITPY_WEB_API_PASSWORD= "electrodragon"
... ...
\ No newline at end of file
SDK-dat/python-dat/circuitpython-dat/circuitpython-dat.md
... ...
@@ -93,6 +93,8 @@ mpremote connect COM6 fs cp settings.toml :
93 93
94 94
https://docs.circuitpython.org/projects/bundle/en/latest/drivers.html
95 95
96
+pip3 install adafruit-circuitpython-busdevice
97
+
96 98
Warning
97 99
98 100
This module requires the CircuitPython imagecapture module which is only in the unreleased development version ("Absolute Newest") of CircuitPython and is only supported on specific boards.
SDK-dat/python-dat/circuitpython-dat/circuitpython-log-dat.md
... ...
@@ -0,0 +1,16 @@
1
+
2
+# circuitpython-log-dat.md
3
+
4
+## __init__.py == .mpy
5
+
6
+The error AttributeError: 'module' object has no attribute 'I2C' means that the board module in your environment does not have an I2C attribute. This is common in some CircuitPython builds or board definitions.
7
+
8
+ >>> import pycam1
9
+ Connecting to None
10
+ Wifi config not found in settintgs.toml. Time not set.
11
+ Traceback (most recent call last):
12
+ File "<stdin>", line 1, in <module>
13
+ File "/lib/pycam1.py", line 59, in <module>
14
+ File "adafruit_pycamera/__init__.py", line 1108, in __init__
15
+ File "adafruit_pycamera/__init__.py", line 212, in __init__
16
+ AttributeError: 'module' object has no attribute 'I2C'
... ...
\ No newline at end of file