Skip to content
Snippets Groups Projects
Commit 7e299dd3 authored by fxk8y's avatar fxk8y :spider:
Browse files

Floating point getters

parent 6334acb6
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
// C++ system level
#include <set>
#include <cmath>
#include <vector>
#include <cstring> // memset, memcpy, strncmp
// #include <cstdlib>
......@@ -111,6 +112,42 @@ namespace SiliconTorch {
qthing::add_binary_message_callback(requestTopic("rm/+/+"), wrapMessageHandler(rmKey));
auto getFloat = [&](std::vector<std::string>& topic, qthing::multipart_message_t msg) {
float value = this->getFloat(topic[1], topic[2]);
if (!std::isnan(value)) {
char buffer[64];
snprintf(buffer, 64, "%f", value);
qthing::publish_message(responseTopic("get_float", topic[1], topic[2]), std::string(buffer));
} else {
// publish error…?
}
};
qthing::add_binary_message_callback(requestTopic("get_float/+/+"), wrapMessageHandler(getFloat));
auto getDouble = [&](std::vector<std::string>& topic, qthing::multipart_message_t msg) {
double value = this->getDouble(topic[1], topic[2]);
if (!std::isnan(value)) {
char buffer[64];
snprintf(buffer, 64, "%f", value);
qthing::publish_message(responseTopic("get_double", topic[1], topic[2]), std::string(buffer));
} else {
// publish error…?
}
};
qthing::add_binary_message_callback(requestTopic("get_double/+/+"), wrapMessageHandler(getDouble));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment