Skip to main content

CircuitPython driver for the INA237 and INA238 DC Current Voltage Power Monitor

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

CircuitPython driver for the INA237 and INA238 DC Current Voltage Power Monitor

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.

Purchase INA237 from the Adafruit shop

Purchase INA238 from the Adafruit shop

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-ina23x

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-ina23x

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install adafruit-circuitpython-ina23x

Installing to a Connected CircuitPython Device with Circup

Make sure that you have circup installed in your Python environment. Install it with the following command if necessary:

pip3 install circup

With circup installed and your CircuitPython device connected use the following command to install:

circup install adafruit_ina23x

Or the following command to update an existing version:

circup update

Usage Example

import time
import board
import adafruit_ina23x

i2c = board.I2C()
ina23x = adafruit_ina23x.INA23X(i2c)

while True:
    print(f"Current: {ina23x.current * 1000:.2f} mA")
    print(f"Bus Voltage: {ina23x.bus_voltage:.2f} V")
    print(f"Shunt Voltage: {ina23x.shunt_voltage * 1000:.2f} mV")
    print(f"Power: {ina23x.power * 1000:.2f} mW")
    print(f"Temperature: {ina23x.die_temperature:.2f} °C")
    print()

    time.sleep(2)

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit_circuitpython_ina23x-1.0.3.tar.gz (24.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adafruit_circuitpython_ina23x-1.0.3-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file adafruit_circuitpython_ina23x-1.0.3.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_ina23x-1.0.3.tar.gz
Algorithm Hash digest
SHA256 d21067de7ade38235cfee0e1a0a0ebc7869bdfe022e29adf67039f2b3cfcc482
MD5 0219efc5aa4c65c9d7d2de63385b7a85
BLAKE2b-256 5cc1ecfa87825e6f9694b8b57df534d621100e39f3a4123c6143b1494e5dc34c

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_ina23x-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_ina23x-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2c7a6c8451a93565b7b40ab09f2f1ced2e60e1c729ec2db84eac29b49d01722a
MD5 16d28ee75e266c0d901022a0b750942f
BLAKE2b-256 4996757b8c60b99f6e8e1854f95e73fbb350249a37dbae555543fc905542e351

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page