summaryrefslogtreecommitdiff
path: root/include/AccessoryCards/AccessoryCardLora.h
diff options
context:
space:
mode:
authorHarsh Sharma <harsh.sharma@multitech.com>2019-12-19 11:53:10 -0600
committerHarsh Sharma <harsh.sharma@multitech.com>2019-12-19 11:53:10 -0600
commit8ce2b9763c880084fd9d38fae6033e487fde58d9 (patch)
tree8b77e3d0c5f24bb8ba4b9ade6298684781a91665 /include/AccessoryCards/AccessoryCardLora.h
downloadmts-io-sysfs-8ce2b9763c880084fd9d38fae6033e487fde58d9.tar.gz
mts-io-sysfs-8ce2b9763c880084fd9d38fae6033e487fde58d9.tar.bz2
mts-io-sysfs-8ce2b9763c880084fd9d38fae6033e487fde58d9.zip
Initial commit
Diffstat (limited to 'include/AccessoryCards/AccessoryCardLora.h')
-rw-r--r--include/AccessoryCards/AccessoryCardLora.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/AccessoryCards/AccessoryCardLora.h b/include/AccessoryCards/AccessoryCardLora.h
new file mode 100644
index 0000000..28f62ff
--- /dev/null
+++ b/include/AccessoryCards/AccessoryCardLora.h
@@ -0,0 +1,16 @@
+#ifndef ACCESSORYCARDLORA_H_
+#define ACCESSORYCARDLORA_H_
+
+#include "General.h"
+
+class AccessoryCardLora {
+ private:
+ std::string spiPath;
+ std::string productId;
+ std::string port;
+ public:
+ AccessoryCardLora(std::string ProductId, std::string Port);
+ std::string getPath();
+};
+
+#endif /* ACCESSORYCARDLORA_H_ */