diff options
author | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-04 21:32:46 +0100 |
---|---|---|
committer | Diego Barrios Romero <eldruin@gmail.com> | 2018-11-04 21:32:46 +0100 |
commit | 5a5d08f92768c48949cb175605055b853e559c5c (patch) | |
tree | db71b7805fbb47acc57c09f7a659f9dc205ed47d /src/devices/mod.rs | |
download | ads1x1x-async-5a5d08f92768c48949cb175605055b853e559c5c.tar.gz ads1x1x-async-5a5d08f92768c48949cb175605055b853e559c5c.tar.xz ads1x1x-async-5a5d08f92768c48949cb175605055b853e559c5c.zip |
Initial version
Diffstat (limited to 'src/devices/mod.rs')
-rw-r--r-- | src/devices/mod.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/devices/mod.rs b/src/devices/mod.rs new file mode 100644 index 0000000..529db04 --- /dev/null +++ b/src/devices/mod.rs @@ -0,0 +1,19 @@ +/// IC markers +pub mod ic { + /// ADS1013 IC marker + pub struct ADS1013; + /// ADS1014 IC marker + pub struct ADS1014; + /// ADS1015 IC marker + pub struct ADS1015; + /// ADS1113 IC marker + pub struct ADS1113; + /// ADS1114 IC marker + pub struct ADS1114; + /// ADS1115 IC marker + pub struct ADS1115; + /// ADS1118 IC marker + pub struct ADS1118; +} + +mod ads1013; |