summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/README.md b/README.md
index 76b32b3..26492c6 100644
--- a/README.md
+++ b/README.md
@@ -77,15 +77,11 @@ Please find additional examples using hardware in this repository: [driver-examp
[driver-examples]: https://github.com/eldruin/driver-examples
```rust
-extern crate embedded_hal;
use embedded_hal::adc::OneShot;
-extern crate linux_embedded_hal;
-#[macro_use(block)]
-extern crate nb;
-extern crate ads1x1x;
+use linux_embedded_hal::I2cdev;
+use nb::block;
use ads1x1x::{channel, Ads1x1x, SlaveAddr};
-use linux_embedded_hal::I2cdev;
fn main() {
let dev = I2cdev::new("/dev/i2c-1").unwrap();