You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can either replace set_thresholds() or add new functionality.
# Globalthresholds=mpr121.thresholds# return a 12 tuple of tuples (touch, release)mpr121.thresholds= (0x42, 0x23) # set all 12 to (touch, release)# Per channelchan0_thresholds=mpr121[0].thresholds# return tuple (touch, release)mpr121[0].thresholds= (0x42, 0x23) # set to (touch, release)
Some way of individually setting touch and release would be nice too. Maybe?
Uh oh!
There was an error while loading. Please reload this page.
Can either replace
set_thresholds()
or add new functionality.Some way of individually setting
touch
andrelease
would be nice too. Maybe?The text was updated successfully, but these errors were encountered: