Skip to content

Commit 8ec2f0d

Browse files
committed
Fixes max allowable I2C address and rolls library version
1 parent 028b575 commit 8ec2f0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun Qwiic Ultrasonic Arduino Library
2-
version=1.1.0
2+
version=1.1.1
33
author=SparkFun Electronics <techsupport@sparkfun.com>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=A library to use the SparkFun Qwiic Ultrasonic Distance Sensor

src/sfeQwiicUltrasonic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const uint8_t kQwiicUltrasonicFWOld = 0x01;
2424
// These addresses are the min and max (respectively) of valid I2C addresses that can
2525
// be used for the newest revision of the Qwiic Ultrasonic sensor.
2626
const uint8_t kQwiicUltrasonicI2CAddressMin = 0x08;
27-
const uint8_t kQwiicUltrasonicI2CAddressMax = 0x7F;
27+
const uint8_t kQwiicUltrasonicI2CAddressMax = 0x77;
2828

2929
// Available I2C addresses of the older SparkFun Qwiic Ultrasonic Sensor.
3030
const uint8_t kQwiicUltrasonicMinAddress = 0x20;

0 commit comments

Comments
 (0)