blob: 11a6373e2f3916a467d1e1415363a792e75b0e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// This example demonstrates the use of a type alias for the `Ads1x1x` struct
// to ease usage in signatures.
use linux_embedded_hal::I2cdev;
use nb::block;
use ads1x1x::{
channel,
ic::{Ads1115, Resolution16Bit},
Ads1x1x, TargetAddr,
};
/// Type alias
type Adc = Ads1x1x<I2cdev, Ads1115, Resolution16Bit, ads1x1x::mode::OneShot>;
/// Read a single value from channel A.
/// Returns 0 on Error.
pub fn read(adc: &mut Adc) -> i16 {
block!(adc.read(channel::SingleA0)).unwrap_or(0)
}
fn main() {
let dev = I2cdev::new("/dev/i2c-1").unwrap();
let mut adc = Ads1x1x::new_ads1115(dev, TargetAddr::default());
let value = read(&mut adc);
println!("Measurement: {}", value);
// get I2C device back
let _dev = adc.destroy_ads1115();
}
|