Skip to content

Commit

Permalink
Bug fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
akkoyun committed Feb 15, 2024
1 parent 9a79b6b commit 13f1eae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Environment",
"version": "5.8.3",
"version": "5.9.1",
"keywords": "Sensor, Environment, SHT21, HDC2010, TSL2561, MPL3115, Temperature, Humidity, Pressure, Light",
"description": "Function measures the value of given sensors. Library is used data mining for stable sensor data. Also cleared for lite use.",
"authors": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Environment
version=5.9.0
version=5.9.1
author=Gunce Akkoyun <[email protected]>
maintainer=Gunce Akkoyun <[email protected]>
sentence=Read environment sensors
Expand Down
6 changes: 3 additions & 3 deletions src/Environment.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
public:

// Construct a new Analog object
Analog(uint8_t _Channel = 1) {
explicit Analog(uint8_t _Channel = 1) {

// Set Channel Variable
_Channel &= 0b00000111;
Expand Down Expand Up @@ -552,7 +552,7 @@
public:

// Construct a new HDC2010 object
HDC2010(bool _Multiplexer_Enable = false, uint8_t _Multiplexer_Channel = 0) : I2C_Functions(__I2C_Addr_HDC2010__, _Multiplexer_Enable, _Multiplexer_Channel) {
explicit HDC2010(bool _Multiplexer_Enable = false, uint8_t _Multiplexer_Channel = 0) : I2C_Functions(__I2C_Addr_HDC2010__, _Multiplexer_Enable, _Multiplexer_Channel) {

}

Expand Down Expand Up @@ -1019,7 +1019,7 @@
public:

// Construct a new MPL3115A2 object
MPL3115A2(const bool _Multiplexer_Enable = false, const uint8_t _Multiplexer_Channel = 0) : I2C_Functions(__I2C_Addr_MPL3115A2__, _Multiplexer_Enable, _Multiplexer_Channel) {
explicit MPL3115A2(const bool _Multiplexer_Enable = false, const uint8_t _Multiplexer_Channel = 0) : I2C_Functions(__I2C_Addr_MPL3115A2__, _Multiplexer_Enable, _Multiplexer_Channel) {

}

Expand Down

0 comments on commit 13f1eae

Please sign in to comment.