ModularSensors > Pages > ModularSensors > Getting Started > Library Dependencies

Library Dependencies

In order to support multiple functions and sensors, there are quite a lot of sub-libraries that this library depends on. Even if you do not use the modules, you must have all of the dependencies installed for the library itself to properly compile. Please check the library.json file for more details on the versions required of each library. If you are using PlatformIO, you can list "EnviroDIY_ModularSensors" in the lib_deps section of your platformio.ini file and all of these libraries will be installed automatically. If using the "standard" Arduino IDE, you must install each of these libraries individually, or in a bundle from the EnviroDIY Libraries meta-repository.

  • EnableInterrupt - Administrates and handles pin change interrupts, allowing the logger to sleep and save battery. This also controls the interrupts for the versions of SoftwareSerial and SDI-12 linked below that have been stripped of interrupt control. Because we use this library, you must always add the line #include <EnableInterrupt.h> to the top of your sketch.
  • AVR sleep library - This is for low power sleeping for AVR processors. (This library is built in to the Arduino and PlatformIO IDEs.)
  • EnviroDIY DS-3231 - For real time clock control
  • RTCZero library - This real time clock control and low power sleeping on SAMD processors. (This library may be built in to the Arduino IDE.) NOTE: If using an AVR board, you must explicitly ignore this library when compiling with PlatformIO or you will have compiler errors.
  • SdFat library - This enables communication with the SD card.
  • EnviroDIY version of the TinyGSM library - This provides internet (TCP/IP) connectivity.
  • Adafruit ADS1X15 library - For high-resolution analog to digital conversion. Note that this is soligen2010's fork of the original Adafruit library; it corrects many problems in the Adafruit library such as a bug which gives the same output on all four inputs regardless of their values. Do NOT use the original Adafruit version!
  • EnviroDIY Arduino SDI-12 library - For control of SDI-12 based sensors. This modified version is needed so there are no pin change interrupt conflicts with the SoftwareSerial library or the software pin change interrupt library used to wake the processor.
  • SensorModbusMaster - for easy communication with Modbus devices.
  • OneWire - This enables communication with Maxim/Dallas OneWire devices.
  • DallasTemperature - for communication with the DS18 line of Maxim/Dallas OneWire temperature probes.
  • Adafruit Unified Sensor Driver - a dependency of several other Adafruit libraries
  • Adafruit AM2315 library - for the AOSong AM2315 temperature and humidity sensor.
  • Adafruit DHT library - for other AOSong temperature and humidity sensors.
  • Adafruit BME280 library - for the Bosch BME280 environmental sensor.
  • Adafruit MPL115A2 library - for the Freescale Semiconductor MPL115A2 barometer.
  • YosemitechModbus - for all Yosemitech modbus environmental sensors.
  • Northern Widget MS5803 Library - for the TE Connectivity MEAS MS5803 pressure sensor
  • EnviroDIY KellerModbus Library - for all Keller modbus pressure and water level sensors.