We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b65f9 commit 13787e6Copy full SHA for 13787e6
Cargo.toml
@@ -3,7 +3,7 @@ name = "ncp5623"
3
description = "Simple driver for the ON Semiconductor NCP5623 I2C RGB LED driver"
4
authors = ["Jason Scatena <jason.scatena@gmail.com>"]
5
repository = "https://github.com/jscatena88/ncp5623"
6
-version = "0.1.2"
+version = "0.1.3"
7
edition = "2021"
8
categories = [
9
"embedded",
src/lib.rs
@@ -65,7 +65,7 @@ pub struct NCP5623<I> {
65
impl<I> NCP5623<I>
66
where
67
I: Write,
68
- <I as Write>::Error: core::fmt::Debug + PartialEq,
+ <I as Write>::Error: core::fmt::Debug,
69
{
70
pub fn new_default_address(i2c: I) -> Self {
71
Self::new(i2c, Address::Default)
0 commit comments