Skip to content

Commit 103b3ee

Browse files
committed
Fix issue 2 - remove qualifier in class def.
1 parent 50344ed commit 103b3ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Example1_BasicReadings/Example1_BasicReadings.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license).
77
88
SGP30 Datasheet: https://cdn.sparkfun.com/assets/c/0/a/2/e/Sensirion_Gas_Sensors_SGP30_Datasheet.pdf
9-
9+
1010
Feel like supporting our work? Buy a board from SparkFun!
1111
https://www.sparkfun.com/products/14813
1212

src/SparkFun_SGP30_Arduino_Library.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class SGP30
141141
const byte _SGP30Address = 0x58;
142142

143143
//Generates CRC8 for SGP30 from lookup table
144-
uint8_t SGP30::_CRC8(uint16_t twoBytes);
144+
uint8_t _CRC8(uint16_t twoBytes);
145145

146146
#ifdef SGP30_LOOKUP_TABLE
147147
//lookup table for CRC8 http://www.sunshine2k.de/coding/javascript/crc/crc_js.html

0 commit comments

Comments
 (0)