Skip to content

Commit

Permalink
Merge pull request #9 from Schm1tz1/testing
Browse files Browse the repository at this point in the history
Update MS5xxx.cpp
  • Loading branch information
Schm1tz1 authored Jul 31, 2023
2 parents b08ffe4 + f3fa7cd commit d5f8728
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/MS5xxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ void MS5xxx::ReadProm() {
C[i] = (c << 8);
c = _Wire->read();
C[i] += c;
_Wire->endTransmission(true);
}

}
Expand Down Expand Up @@ -140,7 +139,6 @@ unsigned long MS5xxx::read_adc(unsigned char aCMD)
value += (c<<8);
c = _Wire->read();
value += c;
_Wire->endTransmission(true);

return value;
}
Expand Down

0 comments on commit d5f8728

Please sign in to comment.