Skip to content

Commit e5d5d79

Browse files
authored
Fix: Remove unncessary case which - in addition to being unnecessary - messes with compilation. (#55)
1 parent 6a0deb3 commit e5d5d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Flasher/Flasher.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ void setup() {
112112

113113
Wire.beginTransmission(0x66);
114114
Wire.write((uint8_t)GET_VERSION);
115-
Wire.write((uint32_t)0);
115+
Wire.write(0);
116116
Wire.endTransmission();
117117

118118
Wire.requestFrom(0x66, 5);

0 commit comments

Comments
 (0)