Skip to content

Commit

Permalink
+ version 0.1.05
Browse files Browse the repository at this point in the history
+ fixed request() in .h file
+ updated version string
  • Loading branch information
RobTillaart committed Dec 7, 2014
1 parent baa1e15 commit ecfea9e
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion libraries/Cozir/cozir.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
//
// FILE: Cozir.cpp
// AUTHOR: DirtGambit & Rob Tillaart
// VERSION: 0.1.04
// VERSION: 0.1.05
// PURPOSE: library for COZIR range of sensors for Arduino
// Polling Mode
// URL: http://forum.arduino.cc/index.php?topic=91467.0
//
// HISTORY:
// 0.1.05 fixed bug: uint16_t request() to uint32_t request() in .h file (Rob T)
// 0.1.04 changed CO2 to support larger values (Rob T)
// 0.1.03 added setOperatingMode
// 0.1.02 added support Arduino 1.x
6 changes: 3 additions & 3 deletions libraries/Cozir/cozir.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// FILE: Cozir.h
// AUTHOR: DirtGambit & Rob Tillaart
// VERSION: 0.1.04
// VERSION: 0.1.05
// PURPOSE: library for COZIR range of sensors for Arduino
// Polling Mode
// URL: http://forum.arduino.cc/index.php?topic=91467.0
@@ -22,7 +22,7 @@
#include "NewSoftSerial.h"
#endif

#define COZIR_LIB_VERSION "0.1.04"
#define COZIR_LIB_VERSION "0.1.05"

// OUTPUTFIELDS
// See datasheet for details.
@@ -97,7 +97,7 @@ class COZIR
void SetOperatingMode(uint8_t mode);

void Command(const char* );
uint16_t Request(const char* );
uint32_t Request(const char* );

char buffer[20];
};

0 comments on commit ecfea9e

Please sign in to comment.