Skip to content

Commit b3d0450

Browse files
committed
Fix Pin module absence
1 parent d5a77fa commit b3d0450

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Qwiic/Qwiic.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# FILE: Qwiic.py
22
# AUTHOR: Josip Šimun Kuči @ Soldered
33
# BRIEF: MicroPython module for Qwiic functionalities
4-
# LAST UPDATED: 2025-05-23
5-
from machine import I2C
4+
# LAST UPDATED: 2025-06-10
5+
from machine import I2C, Pin
66
import time
77
from os import uname
88

9-
109
class Qwiic:
1110
def __init__(self, i2c=None, address: int = 0x30, native: bool = False):
1211
"""
@@ -83,4 +82,4 @@ def send_data(self, data: bytes) -> int:
8382
return 0
8483
except Exception as e:
8584
self.err = e
86-
return -1
85+
return -1

0 commit comments

Comments
 (0)