Displays a graph of the temperature and humidity from a AM2320 sensor.
It produces the following charts:
Edit the python.d/am2320.conf
configuration file using edit-config
from the Netdata config
directory, which is typically at /etc/netdata
.
cd /etc/netdata # Replace this path with your Netdata config directory, if different
sudo ./edit-config python.d/am2320.conf
Raspberry Pi Instructions:
Hardware install: Connect the am2320 to the Raspberry Pi I2C pins
Raspberry Pi 3B/4 Pins:
You may also need to add two I2C pullup resistors if your board does not already have them. The Raspberry Pi does have internal pullup resistors but it doesn't hurt to add them anyway. You can use 2.2K - 10K but we will just use 10K. The resistors go from VDD to SCL and SDA each.
Software install:
sudo pip3 install adafruit-circuitpython-am2320
/etc/netdata/netdata.conf
[plugin:python.d]
command options = -ppython3
To troubleshoot issues with the am2320
module, run the python.d.plugin
with the debug option enabled. The
output will give you the output of the data collection job or error messages on why the collector isn't working.
First, navigate to your plugins directory, usually they are located under /usr/libexec/netdata/plugins.d/
. If that's
not the case on your system, open netdata.conf
and look for the setting plugins directory
. Once you're in the
plugin's directory, switch to the netdata
user.
cd /usr/libexec/netdata/plugins.d/
sudo su -s /bin/bash netdata
Now you can manually run the am2320
module in debug mode:
./python.d.plugin am2320 debug trace