ModularSensors > Classes > Sensor > SDI12Sensors > CampbellClariVUE10
ModularSensors > Modules > Campbell ClariVUE10 > CampbellClariVUE10


CampbellClariVUE10 class

The Sensor sub-class for the Campbell ClariVUE10 turbidity sensor.

Base classes

class SDI12Sensors
The main class for SDI-12 Sensors.

Constructors, destructors, conversion operators

CampbellClariVUE10(char SDI12address, int8_t powerPin, int8_t dataPin, uint8_t measurementsToAverage = 1)
Construct a new Campbell ClariVUE10 object.
CampbellClariVUE10(char* SDI12address, int8_t powerPin, int8_t dataPin, uint8_t measurementsToAverage = 1)
Construct a new Campbell ClariVUE10 object.
CampbellClariVUE10(int SDI12address, int8_t powerPin, int8_t dataPin, uint8_t measurementsToAverage = 1)
Construct a new Campbell ClariVUE10 object.
~CampbellClariVUE10()
Destroy the Campbell ClariVUE10 object.

Function documentation

CampbellClariVUE10(char SDI12address, int8_t powerPin, int8_t dataPin, uint8_t measurementsToAverage = 1)

Construct a new Campbell ClariVUE10 object.

Parameters
SDI12address The SDI-12 address of the ClariVUE10; can be a char, char*, or int.
powerPin

The pin on the mcu controlling power to the ClariVUE10 Use -1 if it is continuously powered.

  • The ClariVUE10 requires a 9.6 to 18 Vdc power supply, which can be turned off between measurements
dataPin The pin on the mcu connected to the data line of the SDI-12 circuit.
measurementsToAverage The number of measurements to take and average before giving a "final" result from the sensor; optional with a default value of 1.

The SDI-12 address of the sensor, the Arduino pin controlling power on/off, and the Arduino pin sending and receiving data are required for the sensor constructor. Optionally, you can include a number of distinct readings to average. The data pin must be a pin that supports pin-change interrupts.


CampbellClariVUE10(char* SDI12address, int8_t powerPin, int8_t dataPin, uint8_t measurementsToAverage = 1)

Construct a new Campbell ClariVUE10 object.

Parameters
SDI12address The SDI-12 address of the ClariVUE10; can be a char, char*, or int.
powerPin

The pin on the mcu controlling power to the ClariVUE10 Use -1 if it is continuously powered.

  • The ClariVUE10 requires a 9.6 to 18 Vdc power supply, which can be turned off between measurements
dataPin The pin on the mcu connected to the data line of the SDI-12 circuit.
measurementsToAverage The number of measurements to take and average before giving a "final" result from the sensor; optional with a default value of 1.

The SDI-12 address of the sensor, the Arduino pin controlling power on/off, and the Arduino pin sending and receiving data are required for the sensor constructor. Optionally, you can include a number of distinct readings to average. The data pin must be a pin that supports pin-change interrupts.


CampbellClariVUE10(int SDI12address, int8_t powerPin, int8_t dataPin, uint8_t measurementsToAverage = 1)

Construct a new Campbell ClariVUE10 object.

Parameters
SDI12address The SDI-12 address of the ClariVUE10; can be a char, char*, or int.
powerPin

The pin on the mcu controlling power to the ClariVUE10 Use -1 if it is continuously powered.

  • The ClariVUE10 requires a 9.6 to 18 Vdc power supply, which can be turned off between measurements
dataPin The pin on the mcu connected to the data line of the SDI-12 circuit.
measurementsToAverage The number of measurements to take and average before giving a "final" result from the sensor; optional with a default value of 1.

The SDI-12 address of the sensor, the Arduino pin controlling power on/off, and the Arduino pin sending and receiving data are required for the sensor constructor. Optionally, you can include a number of distinct readings to average. The data pin must be a pin that supports pin-change interrupts.