We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bbd75a commit 257444aCopy full SHA for 257444a
README.md
@@ -711,6 +711,10 @@ This library does not currently support the spread spectrum function of the Si53
711
Changelog
712
---------
713
714
+* v2.1.1
715
+
716
+ * Add bool return value to _init()_ indicating whether a device is on the I2C bus
717
718
* v2.1.0
719
720
* Add support for reference frequencies and corrections for both the XO and CLKIN
examples/si5351_example/si5351_example.ino
@@ -29,7 +29,7 @@ void setup()
29
// Start serial and initialize the Si5351
30
Serial.begin(57600);
31
i2c_found = si5351.init(SI5351_CRYSTAL_LOAD_8PF, 0, 0);
32
- if(i2c_found)
+ if(!i2c_found)
33
{
34
Serial.println("Device not found on I2C bus!")
35
}
0 commit comments