helo
i am controlling bq76200 with Arduino but it seems i cant set either CHG or DSH mosfet to work correctly and not at the same time
void enablecharing()
{
digitalWrite(DSHON,LOW);
digitalWrite(CHGON,HIGH);
}
void enabledishcharing()
{
digitalWrite(CHGON,LOW);
digitalWrite(DSHON,HIGH);
}
but i need voltage conditions to do so
could you please help regarding this
thank you