aboutsummaryrefslogtreecommitdiffstats
path: root/src/openxc/signal.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openxc/signal.hpp')
-rwxr-xr-xsrc/openxc/signal.hpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/openxc/signal.hpp b/src/openxc/signal.hpp
new file mode 100755
index 0000000..e0124c3
--- /dev/null
+++ b/src/openxc/signal.hpp
@@ -0,0 +1,53 @@
+#pragma once
+
+#include <string>
+#include <map>
+#include <vector>
+#include <cstdint>
+#include <json.hpp>
+
+namespace openxc
+{
+ class signal
+ {
+ private:
+ std::string id_;
+ std::string generic_name_;
+ std::uint32_t bit_position_;
+ std::uint32_t bit_size_;
+ float factor_;
+ float offset_;
+ std::string decoder_;
+ bool ignore_;
+ bool enabled_;
+ std::map<std::string, std::vector<std::uint32_t>> states_;
+ float max_frequency_;
+ bool send_same_;
+ bool force_send_changed_;
+ bool writable_;
+ std::string encoder_;
+ public:
+ std::string id() const;
+ void id(const std::string& id);
+ std::string generic_name() const;
+ std::uint32_t bit_position() const;
+ std::uint32_t bit_size() const;
+ float factor() const;
+ float offset() const;
+ std::string decoder() const;
+ bool ignore() const;
+ bool enabled() const;
+ const std::map<std::string, std::vector<std::uint32_t>>& states() const;
+ float max_frequency() const;
+ bool send_same() const;
+ bool force_send_changed() const;
+ bool writable() const;
+ std::string encoder() const;
+
+ void from_json(const nlohmann::json& j);
+ nlohmann::json to_json() const;
+ };
+
+ void to_json(nlohmann::json& j, const signal& p);
+ void from_json(const nlohmann::json& j, signal& p);
+}