-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sara Damiano <[email protected]>
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* @file SDI12.h | ||
* @copyright (c) 2013-2020 Stroud Water Research Center (SWRC) | ||
* and the EnviroDIY Development Team | ||
* @date August 2013 | ||
* @author Kevin M.Smith <[email protected]> | ||
* | ||
* @brief This is an empty file for the Arduino IDE on Linux | ||
* | ||
* ========================== 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://github.com/EnviroDIY/Arduino-SDI-12 | ||
* | ||
* Authored initially in August 2013 by: | ||
* Kevin M. Smith (http://ethosengineering.org) | ||
* Inquiries: [email protected] | ||
* | ||
* 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://ladyada.net) | ||
* Mikal Hart (http://www.arduiniana.org) | ||
* Paul Stoffregen (http://www.pjrc.com) | ||
* Garrett Mace (http://www.macetech.com) | ||
* Brett Hagman (http://www.roguerobotics.com/) | ||
* | ||
* 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 | ||
*/ | ||
|
||
|
||
#ifndef SRC_SDI12_H_ | ||
#define SRC_SDI12_H_ | ||
|
||
#endif // SRC_SDI12_H_ |