Skip to content

Commit 920de5b

Browse files
authored
Merge pull request #51 from kankaristo/license
Add LICENSE and mention it in all source files
2 parents 799dae5 + 757b0e1 commit 920de5b

File tree

5 files changed

+33
-2
lines changed

5 files changed

+33
-2
lines changed

Adafruit_BME280.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @section license License
2525
*
2626
* BSD license, all text here must be included in any redistribution.
27+
* See the LICENSE file for details.
2728
*
2829
*/
2930

Adafruit_BME280.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* Written by Kevin "KTOWN" Townsend for Adafruit Industries.
1515
*
1616
* BSD license, all text here must be included in any redistribution.
17+
* See the LICENSE file for details.
1718
*
1819
*/
1920

LICENSE

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2015, Limor Fried & Kevin Townsend for Adafruit Industries
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice,
8+
this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
* Neither the name of Adafruit Industries nor the names of its
13+
contributors may be used to endorse or promote products derived from
14+
this software without specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26+
POSSIBILITY OF SUCH DAMAGE.
27+

examples/advancedsettings/advancedsettings.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
1414
Written by Limor Fried & Kevin Townsend for Adafruit Industries.
1515
BSD license, all text above must be included in any redistribution
16+
See the LICENSE file for details.
1617
***************************************************************************/
1718

1819
#include <Wire.h>
@@ -155,4 +156,4 @@ void printValues() {
155156
Serial.println(" %");
156157

157158
Serial.println();
158-
}
159+
}

examples/bme280test/bme280test.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
1414
Written by Limor Fried & Kevin Townsend for Adafruit Industries.
1515
BSD license, all text above must be included in any redistribution
16+
See the LICENSE file for details.
1617
***************************************************************************/
1718

1819
#include <Wire.h>
@@ -79,4 +80,4 @@ void printValues() {
7980
Serial.println(" %");
8081

8182
Serial.println();
82-
}
83+
}

0 commit comments

Comments
 (0)