+ max44009 0.1.5 updated history

This commit is contained in:
RobTillaart 2017-04-20 10:21:49 +02:00
parent 59ac42546b
commit add7ed3b15
3 changed files with 8 additions and 6 deletions

View File

@ -3,7 +3,7 @@
//
// FILE: Max44009.h
// AUTHOR: Rob dot Tillaart at gmail dot com
// VERSION: 0.1.04
// VERSION: 0.1.5
// PURPOSE: library for MAX44009 lux sensor Arduino
// HISTORY: See Max440099.cpp
//
@ -20,7 +20,7 @@
#include "Printable.h"
#define MAX44009_LIB_VERSION "0.1.04"
#define MAX44009_LIB_VERSION "0.1.5"
// REGISTERS
#define MAX44009_INTERRUPT_STATUS 0x00
@ -61,7 +61,7 @@ public:
// check datasheet for detailed behavior
void setConfiguration(uint8_t);
uint8_t getConfiguration();
void setAutomaticMode();
void setAutomaticMode();
void setContinuousMode();
// CDR = Current Divisor Ratio
// CDR = 1 ==> only 1/8th is measured
@ -87,4 +87,4 @@ private:
uint16_t _data;
int _error;
};
#endif
#endif

View File

@ -1,5 +1,5 @@
name=Max44009
version=0.1.04
version=0.1.5
author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Library for MAX44009 lux sensor Arduino.

View File

@ -1,13 +1,15 @@
//
// FILE: Max44009.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.04
// VERSION: 0.1.5
// PURPOSE: library for MAX44009 lux sensor Arduino
// URL:
//
// Released to the public domain
//
// 0.1.5 - updated history
// 0.1.4 - added setAutomaticMode() to max44009.h (thanks debsahu)
// 0.1.03 - added configuration
// 0.1.02 - added threshold code
// 0.1.01 - added interrupt code