Closed
Description
Setting the input current limit to 900 mA via PMICClass::setInputCurrentLimit
does not work.
Problem: There is a typo preventing correct operation:
Arduino_BQ24195/src/BQ24195.cpp
Lines 350 to 352 in d6adc73
should be:
if (current >= 0.9) {
current_val = CURRENT_LIM_900;
}