We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5a77fa commit b3d0450Copy full SHA for b3d0450
1 file changed
Qwiic/Qwiic.py
@@ -1,12 +1,11 @@
1
# FILE: Qwiic.py
2
# AUTHOR: Josip Šimun Kuči @ Soldered
3
# BRIEF: MicroPython module for Qwiic functionalities
4
-# LAST UPDATED: 2025-05-23
5
-from machine import I2C
+# LAST UPDATED: 2025-06-10
+from machine import I2C, Pin
6
import time
7
from os import uname
8
9
-
10
class Qwiic:
11
def __init__(self, i2c=None, address: int = 0x30, native: bool = False):
12
"""
@@ -83,4 +82,4 @@ def send_data(self, data: bytes) -> int:
83
82
return 0
84
except Exception as e:
85
self.err = e
86
- return -1
+ return -1
0 commit comments