summaryrefslogtreecommitdiffstats
path: root/src/devices/mod.rs
diff options
context:
space:
mode:
authorDiego Barrios Romero <eldruin@gmail.com>2018-11-04 21:32:46 +0100
committerDiego Barrios Romero <eldruin@gmail.com>2018-11-04 21:32:46 +0100
commit5a5d08f92768c48949cb175605055b853e559c5c (patch)
treedb71b7805fbb47acc57c09f7a659f9dc205ed47d /src/devices/mod.rs
downloadads1x1x-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.rs19
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;