aboutsummaryrefslogtreecommitdiff
path: root/sensor_als.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sensor_als.cpp')
-rw-r--r--sensor_als.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/sensor_als.cpp b/sensor_als.cpp
index 88c3efc..8edd41c 100644
--- a/sensor_als.cpp
+++ b/sensor_als.cpp
@@ -1,6 +1,11 @@
//Chris Xiong 2018
//3-Clause BSD License
+#include <cstdio>
#include "sensor_als.hpp"
+void SensorALS::set_debug(bool d)
+{
+ debug=d;
+}
void SensorALS::enable_scan_elements()
{
enable_scan_element("both");
@@ -9,5 +14,6 @@ void SensorALS::update_values()
{
value=std::any_cast<int>(dict["in_intensity_both_value"])*
std::any_cast<float>(dict["in_intensity_scale"]);
+ if(debug)printf("ALS reading: %.2f\n",value);
}
float SensorALS::get_value(){return value;}