maix.ext_dev.pmu
maix.ext_dev.pmu module
You can use
maix.ext_dev.pmu
to access this module with MaixPy
This module is generated from MaixPy and MaixCDK
1. Module#
No module
2. Enum#
2.1. ChargerStatus#
charger status
item | describe |
---|---|
values | CHG_TRI_STATE: tri_charge CHG_PRE_STATE: pre_charge CHG_CC_STATE: constant charge CHG_CV_STATE: constant voltage CHG_DONE_STATE: charge done CHG_STOP_STATE: not charge |
C++ defination code:
2.2. PowerChannel#
power channel
item | describe |
---|---|
values | DCDC1: DCDC2: DCDC3: DCDC4: DCDC5: ALDO1: ALDO2: ALDO3: ALDO4: BLDO1: BLDO2: DLDO1: DLDO2: VBACKUP: CPULDO: |
C++ defination code:
3. Variable#
4. Function#
5. Class#
5.1. PMU#
PMU driver class
C++ defination code:
5.1.1. __init__#
Construct a new PMU object, will open PMU.
item | description |
---|---|
type | func |
param | driver: driver name, only support "axp2101". i2c_bus: i2c bus number. Automatically selects the on-board pmu when -1 is passed in. addr: PMU i2c addr. |
static | False |
C++ defination code:
5.1.2. poweroff#
Poweroff immediately.
item | description |
---|---|
type | func |
return | err::Err type, if init success, return err::ERR_NONE. |
static | False |
C++ defination code:
5.1.3. is_bat_connect#
Is the battery connected.
item | description |
---|---|
type | func |
return | bool type, if battery is connected, return true. |
static | False |
C++ defination code:
5.1.4. is_vbus_in#
Is the power adapter connected.
item | description |
---|---|
type | func |
return | bool type, if power adapter is connected, return true. |
static | False |
C++ defination code:
5.1.5. is_charging#
Is bat charging.
item | description |
---|---|
type | func |
return | bool type, if bat is charging, return true. |
static | False |
C++ defination code:
5.1.6. get_bat_percent#
Get the battery percentage.
item | description |
---|---|
type | func |
return | int type, return battery percentage. |
static | False |
C++ defination code:
5.1.7. get_charger_status#
Get the battery charging status.
item | description |
---|---|
type | func |
return | int type, return battery charging status. |
static | False |
C++ defination code:
5.1.8. get_bat_vol#
Get the battery voltage.
item | description |
---|---|
type | func |
return | uint16_t type, return battery voltage. |
static | False |
C++ defination code:
5.1.9. clean_irq#
Clear interrupt flag.
item | description |
---|---|
type | func |
return | err::Err type, if clean success, return err::ERR_NONE. |
static | False |
C++ defination code:
5.1.10. set_bat_charging_cur#
Set the battery charging current.
item | description |
---|---|
type | func |
param | current: The current to be set. |
return | err::Err type, if set success, return err::ERR_NONE. |
static | False |
C++ defination code:
5.1.11. get_bat_charging_cur#
Get the battery charging current.
item | description |
---|---|
type | func |
return | int, return the currently set charging current. |
static | False |
C++ defination code:
5.1.12. set_vol#
Set the PMU channel voltage.\nYou can retrieve the available channel from ext_dev.pmu.PowerChannel.
item | description |
---|---|
type | func |
param | voltage: The voltage to be set. |
return | int, return the channel voltage. |
static | False |
C++ defination code:
5.1.13. get_vol#
Get the PMU channel voltage.\nYou can retrieve the available channel from ext_dev.pmu.PowerChannel.
item | description |
---|---|
type | func |
return | err::Err type, if set success, return err::ERR_NONE. |
static | False |
C++ defination code: