Merge branch 'master' of https://gitee.com/bnu_mixly/mixly3
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
"""
|
||||
MINI G2 -MixGo MINI EXT G2
|
||||
|
||||
MicroPython library for the MINI G2 (Expansion board for MixGo MINI)
|
||||
=======================================================
|
||||
@dahanzimin From the Mixly Team
|
||||
"""
|
||||
|
||||
import gc
|
||||
from machine import Pin, SoftI2C
|
||||
|
||||
'''i2c-extboard'''
|
||||
ext_i2c = SoftI2C(scl=Pin(7), sda=Pin(8), freq=400000)
|
||||
|
||||
'''RFID_Sensor'''
|
||||
try :
|
||||
import rc522
|
||||
ext_rfid = rc522.RC522(ext_i2c)
|
||||
except Exception as e:
|
||||
print("Warning: Failed to communicate with SI522A (RFID) or",e)
|
||||
|
||||
'''Reclaim memory'''
|
||||
gc.collect()
|
||||
@@ -1,7 +1,7 @@
|
||||
"""
|
||||
MINI G5 -MixGo MINI EXT G5
|
||||
MINI GX -MixGo MINI EXT (G2, G5)
|
||||
|
||||
MicroPython library for the MINI G5 (Expansion board for MixGo MINI)
|
||||
MicroPython library for the MINI GX (Expansion board for MixGo MINI)
|
||||
=======================================================
|
||||
@dahanzimin From the Mixly Team
|
||||
"""
|
||||
@@ -15,16 +15,17 @@ ext_i2c = SoftI2C(scl=Pin(7), sda=Pin(8), freq=400000)
|
||||
'''RFID_Sensor'''
|
||||
try :
|
||||
import rc522
|
||||
ext_rfid = rc522.RC522(ext_i2c)
|
||||
ext_rfid = rc522.RC522(ext_i2c)
|
||||
except Exception as e:
|
||||
print("Warning: Failed to communicate with SI522A (RFID) or",e)
|
||||
|
||||
'''ASR_Sensor'''
|
||||
'''ASR_Sensor(G5)'''
|
||||
try :
|
||||
import ci130x
|
||||
ext_asr = ci130x.CI130X(ext_i2c)
|
||||
ext_asr = ci130x.CI130X(ext_i2c)
|
||||
except Exception as e:
|
||||
print("Warning: Failed to communicate with CI130X (ASR) or",e)
|
||||
#print("Warning: Failed to communicate with CI130X (ASR) or",e)
|
||||
pass
|
||||
|
||||
'''Reclaim memory'''
|
||||
gc.collect()
|
||||
Reference in New Issue
Block a user