SDI12.h file
This file contains the main class for the SDI-12 implementation.
========================== Arduino SDI-12 ==================================
An Arduino library for SDI-12 communication with a wide variety of environmental sensors. This library provides a general software solution, without requiring any additional hardware.
======================== Attribution & License =============================
Copyright (C) 2013 Stroud Water Research Center Available at https:/
Authored initially in August 2013 by: Kevin M. Smith (http:/
Modified 2017 by Manuel Jimenez Buendia to work with ARM based processors (Arduino Zero)
Maintenance and merging 2017 by Sara Damiano
based on the SoftwareSerial library (formerly NewSoftSerial), authored by: ladyada (http:/
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Classes
- class SDI12
- The main class for SDI 12 instances.
Enums
- enum LookaheadMode { SKIP_ALL, SKIP_NONE, SKIP_WHITESPACE }
- This enumeration provides the lookahead options for parseInt(), parseFloat().
Typedefs
- using FlashString = const __FlashStringHelper*
- Helper for strings stored in flash.
Defines
- #define NO_IGNORE_CHAR = '\x01'
- a char not found in a valid ASCII numeric field
- #define SDI12_VALUE_STR_SIZE = 9
- The maximum number of characters in a single value in a data response.
- #define SDI12_DATA_STR_SIZE = 35
- The maximum length of a standard data command response.
- #define SDI12_HV_STR_SIZE = 75
- The maximum length of a data response to a concurrent, continuous, or high volume ASCII.
- #define SDI12_BUFFER_SIZE = 81
- The buffer size for incoming SDI-12 data.
-
#define SDI12_BIT_WIDTH_MICROS = static_cast
(833) - The size of a bit in microseconds.
-
#define SDI12_LINE_BREAK_MICROS = static_cast
(12100) - The required "break" before sending commands, >= 12ms. The line level is HIGH for the break.
-
#define SDI12_LINE_MARK_MICROS = static_cast
(8400) - The required mark before a command or response, >= 8.33ms. The line level is LOW for the marking.
- #define WAITING_FOR_START_BIT = 0xFF
- A mask for the #rxState while waiting for a start bit; 0b11111111.
- #define SDI12_CHECK_PARITY
- Check the value of the parity bit on reception.
- #define SDI12_WAKE_DELAY = 0
- The amount of additional time in milliseconds that the sensor takes to wake before being ready to receive a command. Default is 0ms - meaning the sensor is ready for a command by the end of the 12ms break. Per protocol, the wake time must be less than 100 ms.
- #define SDI12_YIELD_MS = 0
- The time to delay, in milliseconds, to allow the buffer to fill before returning the value from the buffer.
- #define SDI12_YIELD() = { delay(
- A delay function to allow the buffer to fill before returning the value from the buffer.
Enum documentation
enum LookaheadMode
This enumeration provides the lookahead options for parseInt(), parseFloat().
The rules set out here are used until either the first valid character is found or a time out occurs due to lack of input.
This enum is part of the Stream parent class, but is missing from the ESP8266 core and ESP32 cores prior to 3.0 (IDF prior to 5.1).
Enumerators | |
---|---|
SKIP_ALL |
All invalid characters are ignored. |
SKIP_NONE |
Nothing is skipped, and the stream is not touched unless the first waiting character is valid. |
SKIP_WHITESPACE |
Only tabs, spaces, line feeds & carriage returns are skipped. |
Define documentation
#define SDI12_VALUE_STR_SIZE = 9
The maximum number of characters in a single value in a data response.
From SDI-12 Protocol v1.4, Table 11 The send data command (aD0!, aD1! . . . aD9!): the value portion must be structred as pd.d
- p - the polarity sign (+ or -)
- d - numeric digits before the decimal place
- . - the decimal point (optional)
- d - numeric digits after the decimal point
- the maximum number of digits for a data value is 7, even without a decimal point
- the minimum number of digits for a data value (excluding the decimal point) is 1
- the maximum number of characters in a data value is 9 (the (polarity sign + 7 digits + the decimal point))
- The polarity symbol (+ or -) acts as a delimeter between the numeric values
#define SDI12_DATA_STR_SIZE = 35
The maximum length of a standard data command response.
From SDI-12 Protocol v1.4, Section 4.4 SDI-12 Commands and Responses: The maximum number of characters that can be returned in the <values> part of the response to a D command is either 35 or 75. If the D command is issued to retrieve data in response to a concurrent measurement command, or in response to a high-volume ASCII measurement command, the maximum is 75. The maximum is also 75 in response to a continuous measurement command. Otherwise, the maximum is 35.
#define SDI12_HV_STR_SIZE = 75
The maximum length of a data response to a concurrent, continuous, or high volume ASCII.
#define SDI12_BUFFER_SIZE = 81
The buffer size for incoming SDI-12 data.
All responses should be less than 81 characters:
- address is a single (1) character
- values has a maximum value of 75 characters
- CRC is 3 characters
- CR is a single character
- LF is a single character
#define SDI12_BIT_WIDTH_MICROS = static_cast(833)
The size of a bit in microseconds.
1200 baud = 1200 bits/second ~ 833.333 µs/bit
#define WAITING_FOR_START_BIT = 0xFF
A mask for the #rxState while waiting for a start bit; 0b11111111.
Possible SDI-12 States
WAITING_FOR_BREAK:
- Sensor (slave) is asleep, waiting for the data recorder (master) to hold the line high for >= 12ms. Or the data recorder has not initiated communication with a sensor in too long and needs to re-alert it.
- Starts:
- After a sensor receives an invalid address (return to sleep)
- When the master wants to address a different sensor
- After line has been in marking (LOW) for > 100 ms (sensor returns to sleep)
- After the line has been in marking (LOW) for > 87 ms (sensor awaits break without sleeping, recorder must send break)
- Ends:
- After 12 ms break has finished
WAITING_FOR_MARKING:
- Sensor has received a >= 12ms HIGH break and is waiting for the data recorder to send >= 8.33 ms of LOW marking.
- Data recorder has finished sending a command, has relinquished the line, and is waiting for the sensor to hold the line LOW for >= 8.33 ms of marking
- Starts:
- After line has been held continuously HIGH for >= 12ms
- Ends:
- After the line has been in marking (LOW) for > 87 ms
WAITING_FOR_START_BIT:
- Line has been held low for >= 8.33 ms of marking
- Ends:
- > 15 ms after the last stop bit of a command (for the recorder/master)
- > 1.66 ms after the last stop bit between characters within a command or response
#define SDI12_YIELD_MS = 0
The time to delay, in milliseconds, to allow the buffer to fill before returning the value from the buffer.
This may be needed for faster processors to account for the slow baud rate of SDI-12. Without this, the available() function may return 0 while we're in the middle of reading a character.
There are 8.33 ms/character, so we delay by 8ms for fast processors to allow one character to finish.
#define SDI12_YIELD() = { delay(
A delay function to allow the buffer to fill before returning the value from the buffer.
This may be needed for faster processors to account for the slow baud rate of SDI-12.