Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of DS1820 by
Diff: DS1820.cpp
- Revision:
- 9:d87e11e8d012
- Parent:
- 7:58b61681818f
diff -r 58b61681818f -r d87e11e8d012 DS1820.cpp
--- a/DS1820.cpp Tue Apr 08 09:59:18 2014 +0000
+++ b/DS1820.cpp Tue Jul 08 18:55:54 2014 +0000
@@ -51,11 +51,11 @@
pin->write(0);
wait_us(3); // DXP modified from 5
if (bit_data) {
- pin->input(); // bring data line high
+ pin->write(1); // bring data line high
wait_us(55);
} else {
wait_us(55); // keep data line low
- pin->input();
+ pin->write(1);
wait_us(10); // DXP added to allow bus to float high before next bit_out
}
}
