Skip to content

Commit 93d2aff

Browse files
add copyright header
1 parent 71bcca3 commit 93d2aff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+143
-8
lines changed

BH1750_LightSensor/BH1750_LightSensor.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
BH1750_LightSensor.cpp - Read BH1750 light sensor.
36
*/

BH1750_LightSensor/BH1750_LightSensor.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
BH1750_LightSensor.h - Read BH1750 light sensor.
36
*/

BME280_BarometerSensor/BME280_BarometerSensor.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
BME280_BarometerSensor.cpp - Read BME280 sensor.
36
*/
@@ -24,7 +27,7 @@ void BME280_BarometerSensor::begin() {
2427
_i2c->begin(_sdaPin, _sclPin, _clockSpeed);
2528

2629
bool status;
27-
status = _sensor->begin(_address, _i2c);
30+
status = _sensor->begin(_address, _i2c);
2831
if (!status) {
2932
Serial.println("Could not find a valid BME280 sensor, check wiring!");
3033
}

BME280_BarometerSensor/BME280_BarometerSensor.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
BME280_BarometerSensor.h - Read BME280 sensor.
36
*/

BMP280_BarometerSensor/BMP280_BarometerSensor.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
BMP280_BarometerSensor.cpp - Read BMP280 sensor.
36
*/
@@ -26,7 +29,7 @@ void BMP280_BarometerSensor::begin() {
2629
_i2c->begin(_sdaPin, _sclPin, _clockSpeed);
2730

2831
bool status;
29-
status = _sensor->begin(_address);
32+
status = _sensor->begin(_address);
3033
if (!status) {
3134
Serial.println("Could not find a valid BMP280 sensor, check wiring!");
3235
}

BMP280_BarometerSensor/BMP280_BarometerSensor.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
BMP280_BarometerSensor.h - Read BMP280 sensor.
36
*/

Button/Button.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
Button.cpp - Control button.
36
*/

Button/Button.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
Button.h - Control button.
36
*/

Button_MCP23017/Button_MCP23017.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
Button_MCP23017.cpp - Control MCP23017 connected button.
36
*/

Button_MCP23017/Button_MCP23017.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) 2020, Collab
2+
* All rights reserved
3+
*/
14
/*
25
Button_MCP23017.cpp - Control MCP23017 connected button.
36
*/

0 commit comments

Comments
 (0)