Expand description
Embedded driver for the INA3221 current and power monitor
Provides a platform agnostic driver for the INA3221 triple-channel current and power monitor that can be used with any embedded-hal v1.0 blocking I2C implementation.
Modules§
Structs§
- Current
- Represents a current value, stored as whole microamps (μA). This value can only be positive.
- INA3221
- Device driver for the INA3221 current and power monitor
- Mask
Enable Flags - Represents status and configuration flags for alerts
- Resistance
- Represents a resistance value, stored as whole milliohms (mΩ). This value can only be positive.
- Voltage
- Represents a voltage value, stored as whole microvolts (μV). This value can be positive or negative.
Enums§
- Operating
Mode - Represents the operating mode of the INA3221
Traits§
- Current
ExtF32 - Extension trait for simple short-hands for creating
Currentvalues fromf32values. - Current
ExtU32 - Extension trait for simple short-hands for creating
Currentvalues fromu32values. - Resistance
ExtF32 - Extension trait for simple short-hands for creating
Resistancevalues fromf32values. - Resistance
ExtU32 - Extension trait for simple short-hands for creating
Resistancevalues fromu32values. - Voltage
ExtF32 - Extension trait for simple short-hands for creating
Voltagevalues fromf32values. - Voltage
ExtI32 - Extension trait for simple short-hands for creating
Voltagevalues fromi32values.