A python module to interface with the LD line of pressure sensors from Keller. Tested on Raspberry Pi 3 with Raspbian.
See the Keller Communication Protocol 4LD-9LD document for more details on the I2C communication protocol, and the Keller 4LD-9LD Datasheet for sensor specification details.
The python SMBus library must be installed.
sudo apt-get install python-smbus
Run the following to install KellerLD-python
pip install git+https://github.com/bluerobotics/KellerLD-python.git@master
Check the minimal example available here.
from kellerLD import KellerLD
sensor = KellerLD()
Initialize the sensor. This needs to be called before using any other methods.
sensor.init()
Returns true if the sensor was successfully initialized, false otherwise.
Read the sensor and update the pressure and temperature.
sensor.read()
Returns True if read was successful, False otherwise.
Get the most recent pressure measurement.
sensor.pressure()
Returns the most recent pressure in bar. Call read() to update.
Get the most recent temperature measurement.
sensor.temperature()
Returns the most recent temperature in degrees Centigrade. Call read() to update.