Skip to content

Commit 89d3754

Browse files
committed
issue RobTillaart#118 Fix constructor for ESP8266
1 parent ede2520 commit 89d3754

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

libraries/Max44009/Max44009.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44
// FILE: Max44009.h
55
// AUTHOR: Rob dot Tillaart at gmail dot com
6-
// VERSION: 0.1.9
6+
// VERSION: 0.1.10
77
// PURPOSE: library for MAX44009 lux sensor Arduino
88
// HISTORY: See Max440099.cpp
99
//
@@ -18,7 +18,7 @@
1818
#include "WProgram.h"
1919
#endif
2020

21-
#define MAX44009_LIB_VERSION "0.1.9"
21+
#define MAX44009_LIB_VERSION "0.1.10"
2222

2323
// REGISTERS
2424
#define MAX44009_INTERRUPT_STATUS 0x00

libraries/Max44009/library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/Arduino.git"
1717
},
18-
"version":"0.1.9",
18+
"version":"0.1.10",
1919
"frameworks": "arduino",
2020
"platforms": "*",
2121
"export": {

libraries/Max44009/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Max44009
2-
version=0.1.9
2+
version=0.1.10
33
author=Rob Tillaart <rob.tillaart@gmail.com>
44
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
55
sentence=Library for MAX44009 lux sensor Arduino.

libraries/Max44009/max44009.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
//
22
// FILE: Max44009.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.1.9
4+
// VERSION: 0.1.10
55
// PURPOSE: library for MAX44009 lux sensor Arduino
66
// URL: https://github.com/RobTillaart/Arduino/tree/master/libraries
77
//
88
// Released to the public domain
99
//
10+
// 0.1.10 - 2018-12-08 issue #118 Fix constructor esp8266
11+
// (thanks to Bolukan)
1012
// 0.1.9 - 2018-07-01 issue #108 Fix shift math
1113
// (thanks Roland vandecook)
1214
// 0.1.8 - 2018-05-13 issue #105 Fix read register

0 commit comments

Comments
 (0)