]> pilppa.org Git - lib1wire.git/blob - src/W1Device.hh
sensor data read fixes.
[lib1wire.git] / src / W1Device.hh
1 /*
2  * W1Device.hh
3  *
4  *  Created on: Oct 20, 2010
5  *      Author: lamikr
6  */
7
8 #ifndef W1DEVICE_HH_
9 #define W1DEVICE_HH_
10
11 #include <string>
12 #include <list>
13
14 #include <dirent.h>
15 #include <stdbool.h>
16
17 #include <plp/Data.hh>
18 #include <plp/DataReader.hh>
19 #include <plp/SensorDevice.hh>
20 #include <plp/Device.hh>
21
22 #ifndef W1_SCAN_ROOTDIR
23 #define W1_SCAN_ROOTDIR         "/sys/bus/w1/devices"
24 #endif
25
26 #ifndef W1_SLAVE_FILE
27 #define W1_SLAVE_FILE           "w1_slave";
28 #endif
29
30 namespace w1 {
31         class W1Device : public plp::SensorDevice {
32                 public:
33                         W1Device(std::string device_id_param,
34                                 std::string device_type_param,
35                                 dirent *direntry_param);
36                         virtual ~W1Device();
37                         std::string get_name();
38                         void set_name(std::string name_param);
39                         void printout();
40                         plp::Data *get_data();
41                         plp::DataReader *get_device_data();
42                 protected:
43                         std::string dir_path;
44                         std::string slave_file;
45                         std::list<plp::Data *> memory_cache;
46                         plp::DataReader *reader;
47                         void save_and_clean_cache();
48                         virtual std::vector<double> *get_raw_data() = 0;
49                         virtual unsigned int get_data_decimal_precision() = 0;
50                         void cache(plp::Data *data);
51                         std::string to_string(double val, int digit_count);
52         };
53 }
54
55 #endif /* W1DEVICE_HH_ */