Thanks to visit codestin.com
Credit goes to github.com

Skip to content

v1.0.2 - fix uninitialized variable warning-as-error #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SparkFun GridEYE AMG88 Library
version=1.0.1
version=1.0.2
author=SparkFun Electronics <[email protected]>
maintainer=SparkFun Electronics <sparkfun.com>
sentence=Library for the Panasonic GridEYE Thermopile Array - AMG88
Expand Down
2 changes: 1 addition & 1 deletion src/SparkFun_GridEYE_Arduino_Library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ void GridEYE::setRegister(unsigned char reg, unsigned char val)
int16_t GridEYE::getRegister(unsigned char reg, int8_t len)
{

int16_t result;
int16_t result = 0;

_i2cPort->beginTransmission(_deviceAddress);
_i2cPort->write(reg);
Expand Down