Files
tactility/Drivers/BQ25896/Source/Bq25896.cpp
T
2026-07-04 23:49:19 +02:00

16 lines
250 B
C++

#include "Bq25896.h"
#include <tactility/log.h>
constexpr auto* TAG = "BQ25896";
void Bq25896::powerOff() {
LOG_I(TAG, "Power off");
bitOn(0x09, BIT(5));
}
void Bq25896::powerOn() {
LOG_I(TAG, "Power on");
bitOff(0x09, BIT(5));
}