diff options
author | Em Shotton <matthewshotton88@gmail.com> | 2024-08-22 11:46:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 20:46:00 +0200 |
commit | d3af2b6074e8698b8b83f79758e23070a8b80002 (patch) | |
tree | ac89b6256ddbbe1ce4b5e3d5edcc4ae3b4165315 /README.md | |
parent | 256309063a39836e5c30b3e9eb2c3bcd3246bdec (diff) | |
download | ads1x1x-async-d3af2b6074e8698b8b83f79758e23070a8b80002.tar.gz ads1x1x-async-d3af2b6074e8698b8b83f79758e23070a8b80002.tar.xz ads1x1x-async-d3af2b6074e8698b8b83f79758e23070a8b80002.zip |
Update the terms "master/slave" to "controller/target" (#29)
* Update the terms "master/slave" to "controller/target" throughout to align with the i2c bus specification v.7
* Updated Changelog
* Change word casing
---------
Co-authored-by: Em Shotton <matthewfshotton@gmail.com>
Co-authored-by: Diego Barrios Romero <eldruin@gmail.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -81,11 +81,11 @@ Please find additional examples using hardware in this repository: [driver-examp use linux_embedded_hal::I2cdev; use nb::block; -use ads1x1x::{channel, Ads1x1x, SlaveAddr}; +use ads1x1x::{channel, Ads1x1x, TargetAddr}; fn main() { let dev = I2cdev::new("/dev/i2c-1").unwrap(); - let mut adc = Ads1x1x::new_ads1013(dev, SlaveAddr::default()); + let mut adc = Ads1x1x::new_ads1013(dev, TargetAddr::default()); let value = block!(adc.read(channel::DifferentialA0A1)).unwrap(); println!("Measurement: {}", value); // get I2C device back |