blob: 28f62ff45c52f0802f6a173d0fc12d579afd1a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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_ */
|